-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathnextflow.config
More file actions
78 lines (72 loc) · 1.9 KB
/
nextflow.config
File metadata and controls
78 lines (72 loc) · 1.9 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
71
72
73
74
75
76
77
78
params {
input = "$launchDir/input"
samplesheetFileName = "samplesheet.csv"
genome = "$launchDir/input/genome.fasta"
outputDir = "$launchDir/output"
datasetType = "TODO" // [originsOfReplication, spliceSites, chipSeq]
//experimentType = "histonemod" // [histonemod, tfbinding, mnase, faire, dnase]
inputFileType = "[fastq/fasta]"
profileSetName = "Profile Set Name"
gffFileName = "output.gff"
saveAlignments = false
saveCoverage = false
hasPairedReads = true
removePCRDuplicates = false
}
process {
withName: bowtie2 {
ext.args = ""
}
}
includeConfig "$baseDir/conf/docker.config"
profiles {
test_chipseq_histonemod {
params {
datasetType = "chipSeq"
experimentType = "histonemod"
input = "$baseDir/data/chipseq_histonemod"
genome = "$baseDir/data/chipseq_histonemod/genome.fasta"
inputFileType = "fastq"
saveCoverage = true
hasPairedReads = true
removePCRDuplicates = true
}
}
test_chipseq_mnase {
params {
datasetType = "chipSeq"
experimentType = "mnase"
input = "$baseDir/data/chipseq_mnase"
genome = "$baseDir/data/chipseq_mnase/genome.fasta"
inputFileType = "fastq"
saveCoverage = true
hasPairedReads = false
removePCRDuplicates = true
}
}
test_origins {
params {
datasetType = "originsOfReplication"
input = "$baseDir/data/origins"
genome = "$baseDir/data/origins/genome.fasta"
inputFileType = "fastq"
saveCoverage = true
hasPairedReads = true
removePCRDuplicates = true
}
}
test_splicesites {
params {
datasetType = "spliceSites"
input = "$baseDir/data/splicesites"
genome = "$baseDir/data/splicesites/genome.fasta"
inputFileType = "fasta"
saveCoverage = false
saveAlignments = true
hasPairedReads = false
removePCRDuplicates = false
}
params {
}
}
}