Changes between Version 19 and Version 20 of SOP/CallingVariantsRNAseq


Ignore:
Timestamp:
08/16/17 12:35:06 (7 years ago)
Author:
krichard
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • SOP/CallingVariantsRNAseq

    v19 v20  
    1919{{{
    2020
    21 bsub STAR --runMode genomeGenerate --genomeDir /path/to/GenomeDir --genomeFastaFiles /path/to/genome/fasta1 /path/to/genome/fasta2 --sjdbGTFfile /path/to/GTF/FileName.gtf --sjdbOverhang 100 --runThreadN 8
     21bsub STAR --runMode genomeGenerate --genomeDir /path/to/GenomeDir --genomeFastaFiles /path/to/genome/fasta1 --sjdbGTFfile /path/to/GTF/FileName.gtf --sjdbOverhang 100 --runThreadN 8
    2222}}}
    2323
     
    3232bsub STAR --genomeDir /path/to/GenomeDir --readFilesIn /path/to/read1.fastq  --outFileNamePrefix whateverPrefix --runThreadN 8
    3333}}}
     34
     35
     36
     37
     38
     39The parameters included in the above sample commands are:
     40  * '''--runMode <alignReads, genomeGenerate>'''   "alignReads" does the actual mapping. "genomeGenerate" generates the genomeDir required for mapping (default = alignReads).
     41  * '''--genomeDir </path/to/GenomeDir>'''  Specifies the path to the directory used for storing the genome information created in the genomeGenerate step.
     42  * '''--genomeFastaFiles <genome FASTA files>''' Specifies genome FASTA files to be used.
     43  * '''--readFilesIn <read1.fastq read2.fastq> ''' Specifies the fastq files containing the reads, can be single-end or paired-end.
     44  * '''--sjdbScore <n> ''' Provides extra alignment score for alignments that cross database junctions (default = 2). If this score is positive, it will bias the alignment toward annotated junctions. This is only used if during the genomeGenerate step a splice junction annotation file is used. 
     45  * '''--runThreadN <n> ''' Specifies the number of threads to use.