-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockstore.wdl
87 lines (69 loc) · 1.66 KB
/
Dockstore.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
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
version 1.0
workflow myWorkflow {
##################################
#### required basic arguments ####
##################################
input {
File input_bam_file
}
call clusterID{
input :
input_bam_file=input_bam_file,
input_bam_index=input_bam_file + ".bai"
}
call scrambleMEI{
input:
infile=clusterID.out
}
output {
File clusterID_out=clusterID.out
File scrambleMEI_out=scrambleMEI.out
}
}
task clusterID{
input {
File input_bam_file
File input_bam_index
}
command {
cluster_identifier ${input_bam_file} > clusters.txt
}
output {
File out = "clusters.txt"
}
runtime {
docker: "sphao/scramble_docker:latest"
}
}
task scrambleMEI{
input {
File infile
}
command {
Rscript --vanilla /app/cluster_analysis/bin/SCRAMble-MEIs.R \
--out-name $PWD/outfile.txt \
--cluster-file ${infile} \
--install-dir /app/cluster_analysis/bin \
--mei-refs /app/cluster_analysis/resources/MEI_consensus_seqs.fa
}
output {
File out = "outfile.txt"
}
runtime {
docker: "sphao/scramble_docker:latest"
}
}
############################################
#### for testing the built-in test file ####
############################################
#task myTask {
# command {
# cluster_identifier /app/validation/test.bam > clusters.txt
# }
# output {
# File out = "clusters.txt"
# }
# runtime {
# docker: "sphao/scramble_docker:latest"
# }
#}