How to upload fasta file to SSH Supercomputer
3
0
Entering edit mode
6.6 years ago
wkmustahs21 ▴ 30

Hi

I would like to know how to upload a fasta file on the the supercomputer (Unix/Linux etc). I have downloaded the whole genome reference of Nipponbare from Rap-DB. I would like to upload to Unix Linux so that I can do my Tuxedo pipeline using Unix/Linux. Can you please me commands or information on how to upload my Nipponbare Ref Genome fast file onto Linux UNIX?

RNA-Seq • 3.7k views
ADD COMMENT
3
Entering edit mode
6.6 years ago
ATpoint 82k

Use rsync, with parameters for maximum speed:

rsync -axv --numeric-ids --delete --progress -e "ssh -T -o Compression=no -x"

It outperforms scp in many regards.

ADD COMMENT
1
Entering edit mode
6.6 years ago
Dan D 7.4k

You can use SFTP through an FTP client like filezilla. There are command line clients as well but I'm not sure if you prefer command line or not. Use port 22 on the destination host.

If you want to transfer over SSH, the scp command is what you want.

For example, if you're on the host with the FASTA file and you want to transfer it to your destination host:

scp /path/to/my.fasta username@my.remote.host:/destination/path/

This will copy my.fasta to the directory /destination/path/ on the remote host.

ADD COMMENT
0
Entering edit mode
6.6 years ago
ac.research ▴ 30

There is a very simple command:

scp from to

Example to supercomputer:

scp /path/to/your/file username@132.343.12.3:/path/to/your/destination/on/supercomputer
scp /home/acresearch/desktop/uniprot90 acresearch@castor:/home/acresearch/databses

Example from supercomputer:

scp username@132.343.12.3:/path/from/your/supercomputer /path/to/your/computer/destination
scp acresearch@castor:/home/acresearch/databses/uniprot90 /home/acresearch/desktop

Another way:

If you understand how to SSH, then you will understand how to SFTP. It is the same concept except for file transfer. You use put to upload and get to download

ADD COMMENT

Login before adding your answer.

Traffic: 2640 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6