Join us for a webinar: The complexities of spatial multiomics unraveled
May 2

Partek Flow Documentation

Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Copying files and folders between your Partek Flow server and local computer

Uploading data to us

$ scp -r local_folder flowloginname@myname.partek.com:~/remote_folder

Downloading data from the Partek Flow server

$ scp -r flowloginname@myname.partek.com:~/remote_folder local_folder

SCP is useful for sending one file or folder at a time. If copying a folder, the “-r” option tells SCP to copy all files and folders recursively in that folder.

RSYNC usage

RSYNC is useful when resuming a failed transfer. Instead of re-uploading or downloading what has already been transferred, RSYNC will copy only what it needs.

...