-
Notifications
You must be signed in to change notification settings - Fork 69
/
Copy pathzUMIs.yaml
executable file
·97 lines (82 loc) · 4.25 KB
/
zUMIs.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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
###########################################
#Welcome to zUMIs
#below, please fill the mandatory inputs
#We expect full paths for all files.
###########################################
#define a project name that will be used to name output files
project:
#Sequencing File Inputs:
#For each input file, make one list object & define path and barcode ranges
#base definition vocabulary: BC(n) UMI(n) cDNA(n).
#Barcode range definition needs to account for all ranges. You can give several comma-separated ranges for BC & UMI sequences, eg. BC(1-6,20-26)
#you can specify between 1 and 4 input files
sequence_files:
file1:
name: #path to first file
base_definition:
- #example: BC(1-6)
- #example: UMI(7-16)
file2:
name: #path to second file
base_definition:
- #example: cDNA(1-50)
#reference genome setup
reference:
STAR_index: #path to STAR genome index
GTF_file: #path to gene annotation file in GTF format
exon_extension: no #extend exons by a certain width?
extension_length: 0 #number of bp to extend exons by
scaffold_length_min: 0 #minimal scaffold/chromosome length to consider (0 = all)
additional_files: #Optional parameter. It is possible to give additional reference sequences here, eg ERCC.fa
additional_STAR_params: #Optional parameter. you may add custom mapping parameters to STAR here
#output directory
out_dir: #specify the full path to the output directory
###########################################
#below, you may optionally change default parameters
###########################################
#number of processors to use
num_threads: 6
mem_limit: null #Memory limit in Gigabytes, null meaning unlimited RAM usage.
#barcode & UMI filtering options
#number of bases under the base quality cutoff that should be filtered out.
#Phred score base-cutoff for quality control.
filter_cutoffs:
BC_filter:
num_bases: 1
phred: 20
UMI_filter:
num_bases: 1
phred: 20
#Options for Barcode handling
#You can give either number of top barcodes to use or give an annotation of cell barcodes.
#If you leave both barcode_num and barcode_file empty, zUMIs will perform automatic cell barcode selection for you!
barcodes:
barcode_num: null
barcode_file: null
barcode_sharing: null #Optional for combining several barcode sequences per cell (see github wiki)
automatic: yes #Give yes/no to this option. If the cell barcodes should be detected automatically. If the barcode file is given in combination with automatic barcode detection, the list of given barcodes will be used as whitelist.
BarcodeBinning: 1 #Hamming distance binning of close cell barcode sequences.
nReadsperCell: 100 #Keep only the cell barcodes with atleast n number of reads.
demultiplex: no #produce per-cell demultiplexed bam files.
#Options related to counting of reads towards expression profiles
counting_opts:
introns: yes #can be set to no for exon-only counting.
intronProb: no #perform an estimation of how likely intronic reads are to be derived from mRNA by comparing to intergenic counts.
downsampling: 0 #Number of reads to downsample to. This value can be a fixed number of reads (e.g. 10000) or a desired range (e.g. 10000-20000) Barcodes with less than <d> will not be reported. 0 means adaptive downsampling. Default: 0.
strand: 0 #Is the library stranded? 0 = unstranded, 1 = positively stranded, 2 = negatively stranded
Ham_Dist: 0 #Hamming distance collapsing of UMI sequences.
velocyto: no #Would you like velocyto to do counting of intron-exon spanning reads
primaryHit: yes #Do you want to count the primary Hits of multimapping reads towards gene expression levels?
multi_overlap: no #Do you want to assign reads overlapping to multiple features?
fraction_overlap: 0 #minimum required fraction of the read overlapping with the gene for read assignment to genes
twoPass: yes #perform basic STAR twoPass mapping
#produce stats files and plots?
make_stats: yes
#Start zUMIs from stage. Possible TEXT(Filtering, Mapping, Counting, Summarising). Default: Filtering.
which_Stage: Filtering
#define dependencies program paths
samtools_exec: samtools #samtools executable
Rscript_exec: Rscript #Rscript executable
STAR_exec: STAR #STAR executable
pigz_exec: pigz #pigz executable
#below, fqfilter will add a read_layout flag defining SE or PE