-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsplicing_detection_01_SplAdder.sh
executable file
·62 lines (47 loc) · 1.77 KB
/
splicing_detection_01_SplAdder.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
#!/bin/bash
#===============================================================================
# Params to splicing detection with SplAdder for one sample
#===============================================================================
project_dir=/path/project
fastq_R1=/path/fastq_R1.fastq
fastq_R2=/path/fastq_R2.fastq
outprefix=sample
#===============================================================================
# Run STAR
#===============================================================================
/code/STAR \
--genomeDir /code/genome_SJ/ \
--genomeLoad NoSharedMemory \
--readFilesCommand 'gzip -d -f -c' \
--readFilesIn $fastq_R1 $fastq_R2 \
--outSAMmode Full \
--outSAMattributes Standard \
--outSAMunmapped None \
--runThreadN 12 \
--outFileNamePrefix $outprefix
#===============================================================================
# Run Samtools
#===============================================================================
samfile=$outprefix"Aligned.out.sam"
suffix=.out.sam
prefix=${samfile%"$suffix"}
/code/samtools view -bS $samfile > $prefix.out.bam
/code/samtools sort -o $prefix.out_sorted.bam -T ctrl1_temp $prefix.out.bam
/code/samtools index $prefix.out_sorted.bam
#===============================================================================
# Run SplAdder
#===============================================================================
bamfile=$prefix.out_sorted.bam
annotation=path/annotation
# activate virtual env with SplAdder
source venv_spladder3/bin/activate
# single graphs
spladder build -o ${project_dir} \
-a $annotation \
-b ${bamfile} \
--merge-strat single\
--quantify-graph\
--qmode single \
--event-types exon_skip,intron_retention,alt_3prime,alt_5prime,mutex_exons\
--output-txt\
--ignore-mismatches