-
Notifications
You must be signed in to change notification settings - Fork 1
mRNASeq on Emory AWS tutorial
-
connect to Emory VPN (BIG-IP)
-
FTP FASTQ files on EFS storage
sftp -i userName.pem username@10.65.122.170 cd /mnt/efs mkdir myDirectoryName cd myDirectoryName put *.fq.gz
-
connect to frontend machine
ssh -i *userName*.pem *username*@10.65.122.170
-
create temporary AWS CLI credentials
tki
Username: *emoryUserName*
Password: *emoryPassword*
Available Duo Authentication Methods: 1.auto
Available Regions: 2:us-east-2
Accept the push/sms/phone call.
This will create AWS CLI credentials valid for 12h (in $HOME/.aws/credentials). -
clone the mRNAseq pipeline
git clone https://github.com/sekalylab/mRNASeq.git
-
launch the mRNASeq pipeline
bash mRNA.preprocess_master.sh -d /mnt/efs/*myDirectoryName*
-
download the output files on local machines
sftp -i *userName*.pem *username*@10.65.122.170
cd /mnt/efs*myDirectoryName*
get *_genecounts
-
empty the EFS storage
rm -r /mnt/efs/*myDirectoryName*