Changes between Initial Version and Version 1 of cypress/WGSA


Ignore:
Timestamp:
07/14/20 14:29:49 (4 years ago)
Author:
fuji
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • cypress/WGSA

    v1 v1  
     1[[PageOutline]]
     2= Installing and Setup WGSA in a local directory on Cypress =
     3Decide a folder dedicated for the pipeline, for example '/lustre/project/group/WGSA'.
     4
     5Setup an environment variable and create workspaces as
     6{{{
     7export $WGSA_DIR=/lustre/project/group/WGSA
     8mkdir $WGSA_DIR
     9cd $WGSA_DIR
     10mkdir work
     11mkdir tmp
     12chmod 777 work
     13chmod 777 tmp
     14}}}
     15
     16Create a space for ANNOVAR,
     17
     18{{{
     19mkdir $WGSA_DIR/annovar
     20}}}
     21
     22
     23Download the ANNOVAR main package from [http://download.openbioinformatics.org/annovar_download_form.php here].
     24The package comes as annovar.latest.tar.gz, save it to $WGSA_DIR/annovar. Unzip it.
     25
     26
     27{{{
     28cd $WGSA_DIR/annovar
     29tar -zxvf annovar.latest.tar.gz
     30}}}
     31
     32Download !RefSeq and !Ensembl gene models for ANNOVAR:
     33
     34{{{
     35cd $WGSA_DIR/annovar/annovar
     36perl annotate_variation.pl -buildver hg19 -downdb -webfrom annovar refGene humandb/
     37perl annotate_variation.pl -buildver hg19 -downdb -webfrom annovar ensGene humandb/
     38perl annotate_variation.pl -buildver hg19 -downdb -webfrom annovar knownGene humandb/
     39perl annotate_variation.pl -buildver hg38 -downdb -webfrom annovar refGene humandb/
     40perl annotate_variation.pl -buildver hg38 -downdb -webfrom annovar ensGene humandb/     
     41perl annotate_variation.pl -buildver hg38 -downdb -webfrom annovar knownGene humandb/   
     42}}}
     43
     44Install !SnpEff (required for annotating indels with !SnpEff or annotating SNVs with !SnpEff on-the-fly)
     45Download !SnpEff v4.3t main package and save the zip file to $WGSA_DIR/snpeff:
     46
     47{{{
     48mkdir $WGSA_DIR/snpeff
     49cd $WGSA_DIR/snpeff
     50wget http://sourceforge.net/projects/snpeff/files/snpEff_v4_3t_core.zip
     51unzip snpEff_v4_3t_core.zip
     52}}}
     53
     54Now you need a newer version of JavaSDK, to use it, you have to do on a computing node.
     55
     56Start a interactive session:
     57
     58{{{
     59idev
     60}}}
     61
     62See [https://wiki.hpc.tulane.edu/trac/wiki/Workshops/IntroToHpc2015/using#SubmittingInteractiveJobs here] for more about 'idev'.
     63
     64Once you get to a computing node, make sure your corrent directory is $WGSA_DIR/snpeff
     65
     66Download !RefSeq and !Ensembl gene models for !SnpEff:
     67
     68{{{
     69cd snpEff
     70java -jar snpEff.jar download -v hg19
     71java -jar snpEff.jar download -v GRCh37.75
     72java -jar snpEff.jar download -v hg38
     73java -jar snpEff.jar download -v GRCh38.86
     74}}}
     75
     76Exit from the computing node:
     77
     78{{{
     79exit
     80}}}
     81
     82Install VEP (required for annotating indels with VEP or annotating SNVs with VEP on-the-fly)
     83
     84Download VEP 94 main package and save it to $WGSA_DIR/vep:
     85
     86{{{
     87mkdir $WGSA_DIR/vep
     88cd $WGSA_DIR/vep
     89wget https://github.com/Ensembl/ensembl-vep/archive/release/94.zip
     90unzip 94.zip
     91}}}
     92
     93