Skip to content

Commit 948a0ca

Browse files
committed
use working container
1 parent 48312ac commit 948a0ca

11 files changed

+143
-13
lines changed

tools/phenomenal/ms/camera/camera-annotate-peaks.cwl

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ label: CAMERA Annotate Peaks
66

77
hints:
88
DockerRequirement:
9-
dockerPull: quay.io/biocontainers/bioconductor-camera
9+
dockerPull: container-registry.phenomenal-h2020.eu/phnmnl/camera
1010
SoftwareRequirement:
1111
packages:
1212
camera:
@@ -32,7 +32,7 @@ outputs:
3232
baseCommand: xsAnnotate.r
3333

3434
arguments:
35-
- input=$(inputs.camera_annotate_peaks.path
35+
- input=$(inputs.camera_annotate_peaks.path)
3636
- output=output.Rdata
3737

3838
doc: |

tools/phenomenal/ms/camera/camera-find-adducts.cwl

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ label: CAMERA Find Adducts
66

77
hints:
88
DockerRequirement:
9-
dockerPull: quay.io/biocontainers/bioconductor-camera
9+
dockerPull: container-registry.phenomenal-h2020.eu/phnmnl/camera
1010
SoftwareRequirement:
1111
packages:
1212
camera:

tools/phenomenal/ms/camera/camera-find-isotopes.cwl

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ label: CAMERA Find Isotopes
66

77
hints:
88
DockerRequirement:
9-
dockerPull: quay.io/biocontainers/bioconductor-camera
9+
dockerPull: container-registry.phenomenal-h2020.eu/phnmnl/camera
1010
SoftwareRequirement:
1111
packages:
1212
camera:
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
#!/usr/bin/env cwl-runner
2+
cwlVersion: v1.0
3+
class: CommandLineTool
4+
5+
label: CAMERA Group Corr
6+
7+
hints:
8+
DockerRequirement:
9+
dockerPull: container-registry.phenomenal-h2020.eu/phnmnl/camera
10+
SoftwareRequirement:
11+
packages:
12+
camera:
13+
specs:
14+
- https://bio.tools/camera
15+
- https://identifiers.org/rrid/RRID:SCR_002466
16+
17+
inputs:
18+
xs_annotate:
19+
type: File
20+
format: iana:application/x-r-data
21+
label: xsAnnotate file
22+
doc: A rdata file with a xsAnnotate object from one sample
23+
correlation:
24+
type: float
25+
label: The correlation threshold for EIC correlation
26+
p_value:
27+
type: float
28+
label: The p-value threshold for testing correlation of significance
29+
30+
outputs:
31+
grouped_peaks:
32+
type: File
33+
format: iana:application/x-r-data
34+
doc: |
35+
a rData file containing one xsAnnotate object containing grouped peaks in
36+
so called pseudospectra
37+
outputBinding:
38+
glob: ouput.Rdata
39+
40+
baseCommand: groupCorr.r
41+
42+
arguments:
43+
- input=$(inputs.xs_annotate.path)
44+
- output=output.Rdata
45+
- correlations=$(inputs.correlation)
46+
- pvalue=$(inputs.pvalue)
47+
48+
doc: |
49+
Peak grouping after correlation information into pseudospectrum
50+
groups for an xsAnnotate object.
51+
52+
**Please cite**:
53+
R Core Team (2013). R: A language and Environment for Statistical Computing. http://www.r-project.org
54+
55+
**References**
56+
Kuhl C, Tautenhahn R, Boettcher C, Larson TR and Neumann S (2012). "CAMERA:
57+
an integrated strategy for compound spectra extraction and annotation of
58+
liquid chromatography/mass spectrometry data sets." Analytical Chemistry, 84,
59+
pp. 283-289. http://pubs.acs.org/doi/abs/10.1021/ac202450g.
60+
61+
$namespaces:
62+
iana: "https://www.iana.org/assignments/media-types/"
63+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
#!/usr/bin/env cwl-runner
2+
cwlVersion: v1.0
3+
class: CommandLineTool
4+
5+
label: CAMERA Group FWHM
6+
7+
hints:
8+
DockerRequirement:
9+
dockerPull: container-registry.phenomenal-h2020.eu/phnmnl/camera
10+
SoftwareRequirement:
11+
packages:
12+
camera:
13+
specs:
14+
- https://bio.tools/camera
15+
- https://identifiers.org/rrid/RRID:SCR_002466
16+
17+
inputs:
18+
xs_annotate:
19+
type: File
20+
format: iana:application/x-r-data
21+
label: xsAnnotate file
22+
doc: A rdata file with a xsAnnotate object from one sample
23+
sigma:
24+
type: float
25+
label: The multiplier of the standard deviation
26+
per_fwhm:
27+
type: float
28+
label: Percentage of the width of the FWHM
29+
intensity_values:
30+
type: string
31+
label: Intensity values for ordering.
32+
doc: Allowed values are into, maxo, intb
33+
34+
outputs:
35+
grouped_peaks:
36+
type: File
37+
format: iana:application/x-r-data
38+
doc: |
39+
a rData file containing one xsAnnotate object containing grouped peaks in
40+
so called pseudospectra
41+
outputBinding:
42+
glob: ouput.Rdata
43+
44+
baseCommand: groupFWHM.r
45+
46+
arguments:
47+
- input=$(inputs.xs_annotate.path)
48+
- output=output.Rdata
49+
- sigma=$(inputs.sigma)
50+
- perfwhm=$(inputs.per_fwhm)
51+
- intval=$(inputs.intensity_values)
52+
53+
doc: |
54+
Group peaks of a xsAnnotate object according to their retention time into
55+
pseudospectra-groups. Uses the peak FWHMs as grouping borders.
56+
57+
**Please cite**:
58+
R Core Team (2013). R: A language and Environment for Statistical Computing. http://www.r-project.org
59+
60+
**References**
61+
Kuhl C, Tautenhahn R, Boettcher C, Larson TR and Neumann S (2012). "CAMERA:
62+
an integrated strategy for compound spectra extraction and annotation of
63+
liquid chromatography/mass spectrometry data sets." Analytical Chemistry, 84,
64+
pp. 283-289. http://pubs.acs.org/doi/abs/10.1021/ac202450g.
65+
66+
$namespaces:
67+
iana: "https://www.iana.org/assignments/media-types/"
68+

tools/phenomenal/ms/xcms/xcms-blankfilter.cwl

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ hints:
1010
- https://identifiers.org/rrid/RRID:SCR_015538
1111
- https://bio.tools/xcms
1212
DockerRequirement:
13-
dockerPull: biocontainers/xcms
13+
dockerPull: payamemami/xcms-container
1414

1515
label: Filters out the peaks that have higher intensities in blank samples compared to selected samples.
1616

tools/phenomenal/ms/xcms/xcms-collect-peaks.cwl

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ hints:
1010
- https://identifiers.org/rrid/RRID:SCR_015538
1111
- https://bio.tools/xcms
1212
DockerRequirement:
13-
dockerPull: biocontainers/xcms
13+
dockerPull: payamemami/xcms-container
1414

1515
label: Combine XCMS-Set objects
1616

tools/phenomenal/ms/xcms/xcms-correct-rt.cwl

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ hints:
1010
- https://identifiers.org/rrid/RRID:SCR_015538
1111
- https://bio.tools/xcms
1212
DockerRequirement:
13-
dockerPull: biocontainers/xcms
13+
dockerPull: payamemami/xcms-container
1414

1515
label: Correct differences between retention times between different samples using the `retcor` generic method.
1616

tools/phenomenal/ms/xcms/xcms-dilutionfilter.cwl

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ hints:
1010
- https://identifiers.org/rrid/RRID:SCR_015538
1111
- https://bio.tools/xcms
1212
DockerRequirement:
13-
dockerPull: biocontainers/xcms
13+
dockerPull: payamemami/xcms-container
1414

1515
label: Dilution Filter
1616
doc: |

tools/phenomenal/ms/xcms/xcms-fill-peaks.cwl

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ hints:
1010
- https://identifiers.org/rrid/RRID:SCR_015538
1111
- https://bio.tools/xcms
1212
DockerRequirement:
13-
dockerPull: biocontainers/xcms
13+
dockerPull: payamemami/xcms-container
1414

1515
label: XCMS Fill Peaks
1616
doc: |

tools/phenomenal/ms/xcms/xcms-find-peaks.cwl

+3-4
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
cwlVersion: v1.0
33
class: CommandLineTool
44

5-
baseCommand: findPeaks.r
6-
75
hints:
86
SoftwareRequirement:
97
packages:
@@ -12,7 +10,7 @@ hints:
1210
- https://identifiers.org/rrid/RRID:SCR_015538
1311
- https://bio.tools/xcms
1412
DockerRequirement:
15-
dockerPull: biocontainers/xcms
13+
dockerPull: payamemami/xcms-container
1614

1715
inputs:
1816
spectra:
@@ -56,6 +54,8 @@ outputs:
5654
glob: output.Rdata
5755
doc: A rdata file containing a XCMS-Set generated from the input mzML file
5856

57+
baseCommand: findPeaks.r
58+
5959
arguments:
6060
- output=output.Rdata
6161
- ppm=$(inputs.ppm)
@@ -67,7 +67,6 @@ arguments:
6767

6868
label: XMCS Find Peaks
6969

70-
7170
$namespaces:
7271
iana: "https://www.iana.org/assignments/media-types/"
7372
edam: "http://edamontology.org"

0 commit comments

Comments
 (0)