Changes between Version 60 and Version 61 of SOPs/mapping
- Timestamp:
- 01/22/19 10:47:50 (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
SOPs/mapping
v60 v61 115 115 {{{ 116 116 # Input format: fastq ; output format: SAM 117 bsub STAR --genomeDir /path/to/GenomeDir --readFilesIn /path/to/read1.fastq /path/to/read2.fastq -- sjdbScore 2 --outFileNamePrefix whateverPrefix--runThreadN 8117 bsub STAR --genomeDir /path/to/GenomeDir --readFilesIn /path/to/read1.fastq /path/to/read2.fastq --outFileNamePrefix whateverPrefix --sjdbScore 2 --runThreadN 8 118 118 # Input format: fastq.gz ; output format: BAM (sorted by position) 119 bsub STAR --genomeDir /path/to/GenomeDir --readFilesIn /path/to/read1.fq.gz /path/to/read2.fq.gz -- sjdbScore 2 --outFileNamePrefix whateverPrefix--runThreadN 8 --readFilesCommand zcat --outSAMtype BAM SortedByCoordinate119 bsub STAR --genomeDir /path/to/GenomeDir --readFilesIn /path/to/read1.fq.gz /path/to/read2.fq.gz --outFileNamePrefix whateverPrefix --sjdbScore 2 --runThreadN 8 --readFilesCommand zcat --outSAMtype BAM SortedByCoordinate 120 120 121 121 #mapping when gtf/overhang was not specified during indexing 122 bsub STAR --genomeDir /path/to/GenomeDir --readFilesIn /path/to/read1.fq.gz /path/to/read2.fq.gz -- sjdbScore 2 --outFileNamePrefix whateverPrefix--runThreadN 8 --readFilesCommand zcat --outSAMtype BAM SortedByCoordinate --sjdbGTFfile /path/to/GTF/FileName.gtf --sjdbOverhang readLength-1122 bsub STAR --genomeDir /path/to/GenomeDir --readFilesIn /path/to/read1.fq.gz /path/to/read2.fq.gz --outFileNamePrefix whateverPrefix --sjdbScore 2 --runThreadN 8 --readFilesCommand zcat --outSAMtype BAM SortedByCoordinate --sjdbGTFfile /path/to/GTF/FileName.gtf --sjdbOverhang readLength-1 123 123 124 124 }}} … … 149 149 '''Run this command within the FirstPass directory''' 150 150 {{{ 151 bsub STAR --genomeDir /path/to/GenomeDirFirstPass --readFilesIn /path/to/Reads_1.fastq 151 bsub STAR --genomeDir /path/to/GenomeDirFirstPass --readFilesIn /path/to/Reads_1.fastq --outFileNamePrefix whateverPrefix --runThreadN 8 152 152 }}} 153 153