-
Notifications
You must be signed in to change notification settings - Fork 0
/
CellRangerATAC.wdl
58 lines (44 loc) · 1.58 KB
/
CellRangerATAC.wdl
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
version 1.0
import "modules/Count.wdl" as Count
workflow CellRangerATAC {
input {
String sampleName
String fastqNames
Array[File] fastqFiles
Map[String, String] referenceGenome
String? chemistry
# docker-related
String dockerRegistry
}
call Count.Count {
input:
sampleName = sampleName,
fastqNames = fastqNames,
fastqFiles = fastqFiles,
referenceGenome = referenceGenome,
chemistry = chemistry,
dockerRegistry = dockerRegistry
}
output {
File bam = Count.bam
File bai = Count.bai
File summaryJson = Count.summaryJson
File summaryCsv = Count.summaryCsv
File summaryHtml = Count.summaryHtml
File perBarcodeMetrics = Count.perBarcodeMetrics
File peaks = Count.peaks
File? secondaryAnalysis = Count.secondaryAnalysis
Array[File] rawPeakBCMatrix = Count.rawPeakBCMatrix
File rawPeakBCMatrixH5 = Count.rawPeakBCMatrixH5
Array[File] filteredPeakBCMatrix = Count.filteredPeakBCMatrix
File filteredPeakBCMatrixH5 = Count.filteredPeakBCMatrixH5
Array[File] filteredTFBCMatrix = Count.filteredTFBCMatrix
File filteredTFBCMatrixH5 = Count.filteredTFBCMatrixH5
File cloupe = Count.cloupe
File fragments = Count.fragments
File fragmentsIndex = Count.fragmentsIndex
File peakAnnotation = Count.peakAnnotation
File peakMotifMapping = Count.peakMotifMapping
File pipestanceMeta = Count.pipestanceMeta
}
}