-
Notifications
You must be signed in to change notification settings - Fork 0
/
birds.cwl
88 lines (73 loc) · 1.32 KB
/
birds.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
#
# we skip te exploredat and explorefft steps since they require X and are
# interactive
#
#
cwlVersion: v1.0
class: Workflow
requirements:
ScatterFeatureRequirement: {}
inputs:
filterbank: File
time: float
dm: float
nobary: boolean
numout: int
numharm: int
zmax: int
nsub: int
lodm: float
dmstep: float
numdms: int
numout_prepsubband: int
downsamp: int
accelcand: int
outputs:
meta:
type: File
outputSource: readfile/meta
inf:
type: File
outputSource: rfifind/inf
candidates_text:
type: File
outputSource: accelsearch/candidates_text
steps:
readfile:
run: steps/readfile.cwl
in:
filterbank: filterbank
out:
[meta]
rfifind:
run: steps/rfifind.cwl
in:
time: time
filterbank: filterbank
out:
[bytemask, inf, mask, ps, rfi, stats]
prepdata:
run: steps/prepdata.cwl
in:
filterbank: filterbank
dm: dm
nobary: nobary
numout: numout
stats: rfifind/stats
mask: rfifind/mask
out:
[dat, inf]
realfft:
run: steps/realfft.cwl
in:
dat: prepdata/dat
out:
[ fft ]
accelsearch:
run: steps/accelsearch.cwl
in:
dat: prepdata/dat
inf: prepdata/inf
numharm: numharm
zmax: zmax
out: [candidates_binary, candidates_text]