-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathworkflowinput.yaml
More file actions
144 lines (125 loc) · 4.35 KB
/
workflowinput.yaml
File metadata and controls
144 lines (125 loc) · 4.35 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
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
workflowname: ENVnet_Workflow
workflowdescription: ENVnet_Workflow
workflowlongdescription: Compare Dissolved Organic Matter (DOM) Samples From Two Groups Using ENVnet
workflowversion: "1.1"
workflowfile: nf_workflow.nf
workflowautohide: false
adminonly: false
#This maps the parameters from an input form to those that will appear in nextflow
parameterlist:
- displayname: File Selection
paramtype: section
- displayname: Group 1 (Control) Data Folder
paramtype: fileselector
nf_paramname: inputfiles1
formplaceholder: Enter the path to data
formvalue: ""
targettaskfolder: inputfiles1
optional: false
selectsinglefile: false
folderunroll: true
- displayname: Group 2 (Treatment) Data Folder
paramtype: fileselector
nf_paramname: inputfiles2
formplaceholder: Enter the path to data
formvalue: ""
targettaskfolder: inputfiles2
optional: false
selectsinglefile: false
folderunroll: true
- displayname: General Parameters
paramtype: section
- displayname: Group 1 (Control) Name
paramtype: text
nf_paramname: inputfiles1_name
formplaceholder: Enter data group 1 name.
formvalue: ""
optional: false
- displayname: Group 2 (Treatment) Name
paramtype: text
nf_paramname: inputfiles2_name
formplaceholder: Enter data group 2 name.
formvalue: ""
optional: false
- displayname: Normalize Intensities (By Total Intensity)
paramtype: select
nf_paramname: normalize_ints
formvalue: "0"
options:
- value: "0"
display: "No"
- value: "1"
display: "Yes"
- displayname: Require MS/MS Support For Statistical Analysis
paramtype: select
nf_paramname: require_ms2_support
formvalue: "0"
options:
- value: "0"
display: "No"
- value: "1"
display: "Yes"
- displayname: Peak Intensity Value
paramtype: select
nf_paramname: peak_value
formvalue: "peak_area"
options:
- value: "peak_area"
display: "Peak Area"
- value: "peak_height"
display: "Peak Height"
- displayname: Analysis Parameters
paramtype: section
- displayname: m/z Tolerance (ppm)
paramtype: text
nf_paramname: mz_tolerance
formplaceholder: Enter the mz_tolerance. Used for MS1 and precursor m/z comparisons
formvalue: "10"
optional: true
- displayname: Minimum Retention Time (Minutes)
paramtype: text
nf_paramname: rt_min
formplaceholder: Enter the rt_min. Used to filter features from data files outside of range
formvalue: "1"
optional: true
- displayname: Maximum Retention Time (Minutes)
paramtype: text
nf_paramname: rt_max
formplaceholder: Enter the rt_max. Used to filter features from data files outside of range
formvalue: "9"
optional: true
- displayname: Minimum Number of Data Points
paramtype: text
nf_paramname: num_data_min
formplaceholder: Enter the num_data_min. Used to filter features from data files lower than min. A data point is defined as the detection of a particular m/z in one scan.
formvalue: "5"
optional: true
- displayname: Minimum MS/MS Score
paramtype: text
nf_paramname: msms_score_min
formplaceholder: Enter the msms_score_min.
formvalue: "0.5"
optional: true
- displayname: Minimum MS/MS Matching Ion Counts
paramtype: text
nf_paramname: msms_matches_min
formplaceholder: Enter the msms_matches_min.
formvalue: "3"
optional: true
# Removed for now, can be added back later
# - displayname: Cosmograph Visualization Parameters
# paramtype: section
# - displayname: Log2 Fold Change Color Scale Max
# paramtype: text
# nf_paramname: max_log_change
# formplaceholder: Enter the max_log_change. Used for visualization in cosmograph, doesn't override actual values.
# formvalue: "1"
# optional: true
# - displayname: Compound Class & Set Cover Analysis Parameters
# paramtype: section
# - displayname: Max P value
# paramtype: text
# nf_paramname: max_pval
# formplaceholder: Enter the max_pval. Used for the compound class comparisons
# formvalue: "0.05"
# optional: true