-
Notifications
You must be signed in to change notification settings - Fork 0
/
presto.cwl
103 lines (91 loc) · 1.86 KB
/
presto.cwl
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
cwlVersion: v1.0
class: Workflow
requirements:
ScatterFeatureRequirement: {}
inputs:
filterbank: File
birds: File
nobary: boolean
dm: float
numout: int
time: float
numharm: int
zmax: int
nsub: int
lodm: float
dmstep: float
numdms: int
numout_prepsubband: int
downsamp: int
accelcand: int
outputs:
pfds:
type: File[]
outputSource: prepfold/pfd
bestprof:
type: File[]
outputSource: prepfold/bestprof
steps:
rfifind:
run: steps/rfifind.cwl
in:
time: time
filterbank: filterbank
out:
[bytemask, inf, mask, ps, rfi, stats]
makezaplist:
run: steps/makezaplist.cwl
in:
inf: rfifind/inf
birds: birds
out:
[zaplist]
prepsubband:
run: steps/prepsubband.cwl
in:
filterbank: filterbank
mask: rfifind/mask
stats: rfifind/stats
nsub: nsub
lodm: lodm
dmstep: dmstep
numdms: numdms
numout: numout_prepsubband
downsamp: downsamp
nobary: nobary
out: [dats, infs]
realfft_subbands:
run: steps/realfft.cwl
in:
dat: prepsubband/dats
scatter: dat
out: [fft]
zapbirds:
run: steps/zapbirds.cwl
in:
zapfile: makezaplist/zaplist
fft: realfft_subbands/fft
inf: prepsubband/infs
scatter: [fft, inf]
scatterMethod: dotproduct
out: [zapped]
accelsearch_subbands:
run: steps/accelsearch.cwl
in:
dat: zapbirds/zapped
inf: prepsubband/infs
numharm: numharm
zmax: zmax
scatter: [dat, inf]
scatterMethod: dotproduct
out: [candidates_binary, candidates_text]
prepfold:
run: steps/prepfold.cwl
in:
accelcand: accelcand
accel: accelsearch_subbands/candidates_binary
dat: prepsubband/dats
inf: prepsubband/infs
scatter: [accel, dat, inf]
scatterMethod: dotproduct
out: [pfd, bestprof]