Changes between Version 55 and Version 56 of SOPs/mapping
- Timestamp:
- 09/29/17 12:34:22 (7 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
SOPs/mapping
v55 v56 206 206 {{{ 207 207 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 208 209 #generate index without overhang/gtf, specify these at mapping instead 210 bsub STAR --runMode genomeGenerate --genomeDir /path/to/GenomeDir --genomeFastaFiles /path/to/genome/fasta1 /path/to/genome/fasta2 --runThreadN 8 211 208 212 }}} 209 213 … … 218 222 # Input format: fastq.gz ; output format: BAM (sorted by position) 219 223 bsub 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 224 225 #mapping when gtf/overhang was not specified during indexing 226 bsub 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 --sjdbGTFfile /path/to/GTF/FileName.gtf --sjdbOverhang readLength-1 227 220 228 }}} 221 229