-
Notifications
You must be signed in to change notification settings - Fork 1
/
preprocess.yaml
executable file
·82 lines (60 loc) · 1.8 KB
/
preprocess.yaml
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{% set MB_PREFIX = "mockinbird.stammp_modules" %}
{% set ref_gen = "/usr/users/ssohrab/CLIP/Reference_genome" %}
{% set star_index = ref_gen + "/STAR_generatedGenome" %}
{% set bowtie_index = ref_gen + "/BowtieIndex/genome" %}
{% set pileup = "/usr/users/ssohrab/CLIP/additional_files/RNAseq.mpileup" %}
general:
adapter5prime: GTTCAGAGTTCTACAGTCCGACGATC
adapter3prime: TGGAATTCTCGGGTGCCAAGG
genomefasta: {{ ref_gen }}/WholeGenomeFasta/genome.fa
normalization_pileup: {{ pileup }}
rmTemp: no
n_threads: 3
reads:
fx_Q33: yes
bc_5prime: 5
bc_3prime: 0
min_len: 20
reference_nucleotide: T
mutation_nucleotide: C
pipeline:
- FastQCModule: &FASTQC_CFG
kmer_length: 7 # int: used in fastqc's kmer statistics
extra_flags: [] # list of additional flags
outdir_name: fastQC_raw
- UmiToolsExtractModule
- SkewerAdapterClippingModule:
extra_args:
- -k 1
- ClippyAdapterClippingModule:
clip_len: 10
clipped_5prime_bc: true
- BowtieMapModule:
genome_index: {{ bowtie_index }}
n_multimap: 1
n_mismatch: 1
- SortIndexModule:
keep_all: yes
- UmiToolsDedupModule
- BamPPModule:
remove_n_edge_mut: 1
plot_transition_profiles: yes
max_mut_per_read: 1
min_base_quality: 0
min_avg_ali_quality: 0
min_mismatch_quality: 20
dump_raw_data: no
outdir_name: bam_analysis
- SoftclipAnalysisModule:
outdir_name: bam_analysis
- SortIndexModule:
keep_all: yes
- PileupModule:
keep_all: yes
- BSFinderModule:
pval_threshold: 0.005
min_cov: 2
- NormalizationModule:
mut_snp_ratio: 0.75
- QuantileCapModule:
max_quantile: 0.95