Skip to content

mRNASeq on Emory AWS tutorial

Slim Fourati edited this page Jan 20, 2021 · 8 revisions
  1. connect to Emory VPN (BIG-IP)

  2. 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  
  1. connect to frontend machine
    ssh -i *userName*.pem *username*@10.65.122.170

  2. 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).

  3. clone the mRNAseq pipeline
    git clone https://github.com/sekalylab/mRNASeq.git

  4. launch the mRNASeq pipeline
    bash mRNA.preprocess_master.sh -d /mnt/efs/*myDirectoryName*

  5. download the output files on local machines
    sftp -i *userName*.pem *username*@10.65.122.170
    cd /mnt/efs*myDirectoryName*
    get *_genecounts

  6. empty the EFS storage
    rm -r /mnt/efs/*myDirectoryName*

Clone this wiki locally