-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnextflow_schema.json
More file actions
70 lines (70 loc) · 2.05 KB
/
nextflow_schema.json
File metadata and controls
70 lines (70 loc) · 2.05 KB
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
{
"type": "object",
"properties": {
"UMItype": {
"type": "string",
"description":"UMI can be random or semi",
"default": "random"
},
"flavour": {
"type": "string",
"description":"Pipeline to run: ST, QSP",
"default": "ST"
},
"genome": {
"type": "string",
"description":"add the path to the reference genome",
"default": "/data/gent/vo/000/gvo00027/resources/STAR_index/Homo_sapiens/GRCh38.dna.primary_assembly.chrIS_spikes_45S.star_index"
},
"gtf_file": {
"type": "string",
"description":"add the path to the gtf file",
"default": "/data/gent/vo/000/gvo00027/resources/Ensembl_transcriptomes/Homo_sapiens/GRCh38/Homo_sapiens.GRCh38.109.chrIS_spikes_45S.gtf"
},
"CSVfile": {
"type": "string",
"description":"add the path to the samplesheet",
"default": "/kyukon/scratch/gent/vo/000/gvo00027/vsc44685/ST_transcriptomics_local/testing/Test_CSV.csv"
},
"reads": {
"type": "string",
"description":"path to the fastqfiles"
},
"outdir": {
"type": "string",
"description":"add the path to save the outputs",
"default": "/user/gent/446/vsc44685/ScratchVO_dir/Adv_NF_2"
},
"Subs": {
"type": "integer",
"description":"Number of reads to downsample all files",
"default": 10000
},
"N42": {
"type": "integer",
"description":"levenshtein distance threshold for barcode decoding",
"default": 10
},
"N21": {
"type": "integer",
"description":"levenshtein distance threshold for barcode decoding",
"default": 11
},
"N3": {
"type": "integer",
"description":"levenshtein distance threshold for barcode decoding",
"default": 12
},
"M": {
"type": "integer",
"description":"length of barcode",
"default": 36
},
"Ntriage": {
"type": "integer",
"description":"Number of barcodes to pass triage",
"default": 100
}
},
"required": ["CSVfile", "UMItype", "genome", "gtf_file", "Ntriage"]
}