Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Latest commit

 

History

History
History
23 lines (18 loc) · 1.43 KB

File metadata and controls

23 lines (18 loc) · 1.43 KB
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Index building
STAR --runThreadN 5 \
--runMode genomeGenerate \
--genomeDir STAR_100_index \
--genomeFastaFiles GRCm38.primary_assembly.genome.fa \
--sjdbGTFfile gencode.vM10.annotation.gtf \
--sjdbOverhang 100
# Example run for single-end cell
/data/yosef2/users/cfbuenabadn/software/STAR-2.5.3a/bin/Linux_x86_64/STAR --runThreadN 4 \
--genomeDir /data/yosef2/users/cfbuenabadn/mm10/STAR_100_index \
--readFilesIn SRR2727450.fastq \ # a second fastq file is listed for paired-end datasets
--quantMode GeneCounts \
--twopassMode Basic \
--outFileNamePrefix /data/yosef2/scratch/cfbuenabadn/ChenRNASeq/SRR2727450/star_output/ \
--outSAMstrandField intronMotif \
--outSAMtype BAM SortedByCoordinate \
--outReadsUnmapped Fastx
Note: STAR performs soft-trimming of reads (Doubin et al, 2013). Therefore, we do not run trimmomatic before mapping.
Morty Proxy This is a proxified and sanitized view of the page, visit original site.