Changes between Version 51 and Version 52 of SOPs/mapping


Ignore:
Timestamp:
06/13/17 12:10:15 (8 years ago)
Author:
gbell
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • SOPs/mapping

    v51 v52  
    230230To improve identification of novel splice junctions, run STAR for a second pass, using junctions found from all samples during the first-pass mapping.  This is especially useful if no GTF file (with annotated junctions) was available for the first-pass mapping.
    231231
    232 Sample second-pass command:
     232Sample multiple-sample second-pass command (to run after typical mapping [1st pass]):
    233233{{{
    234234bsub STAR --genomeDir /path/to/GenomeDir --readFilesIn /path/to/read1.fq.gz /path/to/read2.fq.gz --sjdbScore 2 --outFileNamePrefix whateverPrefix --runThreadN 8 --readFilesCommand gunzip -c --outSAMtype BAM SortedByCoordinate --sjdbFileChrStartEnd sample1_junctions.tab [sample2_junctions.tab ...]
    235235}}}
    236236
     237Sample single-sample 2-pass command (includes 1st and 2nd passes):
     238{{{
     239bsub STAR --genomeDir /path/to/GenomeDir --readFilesIn /path/to/read1.fq.gz /path/to/read2.fq.gz --sjdbScore 2 --outFileNamePrefix whateverPrefix --runThreadN 8 --readFilesCommand gunzip -c --outSAMtype BAM SortedByCoordinate --twopassMode Basic
     240}}}
     241
    237242== Others ==
    238243