-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnextflow_schema.json
More file actions
51 lines (51 loc) · 1.63 KB
/
Copy pathnextflow_schema.json
File metadata and controls
51 lines (51 loc) · 1.63 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
{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "https://raw.githubusercontent.com///nextflow_schema.json",
"title": "Pipeline parameters",
"description": "",
"type": "object",
"properties": {
"reads": {
"type": "string",
"format": "file-path",
"description": "FASTQ reads from RNA-seq experiment",
"help_text": ""
},
"bams": {
"type": "string",
"format": "file-path",
"description": "Aligned reads obtained after mapping"
},
"outdir": {
"type": "string",
"format": "directory-path",
"description": "The output directory where the results will be saved. You have to use absolute paths to storage on Cloud infrastructure.",
"fa_icon": "fas fa-folder-open",
"default": "results"
},
"gtf_rnaseq": {
"type": "string",
"format": "file-path",
"default": "/hpcnfs/scratch/ED/genome/GRCh38_human_v39/gencode.v39.primary_assembly.annotation.gtf",
"description": "Genome reference file"
},
"gtf_bed_strandness": {
"type": "string",
"format": "file-path",
"default": "/hpcnfs/scratch/ED/genome/GRCh38_human_v39/gencode.v39.primary_assembly.annotation.gtf.bed",
"description": "Genome reference BED file"
},
"index": {
"type": "string",
"format": "directory-path",
"default": "/hpcnfs/scratch/ED/genome/GRCh38_human_v39/STAR",
"description": "Genome reference index directory"
},
"run_strandness": {
"type": "boolean",
"description": "Optional workflow to infer strandness of reads",
"default": false
}
},
"required": ["outdir"]
}