@@ -5,16 +5,16 @@ process THERMORAWFILEPARSER {
55 label ' error_retry'
66
77 conda " ${ moduleDir} /environment.yml"
8- container " ${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container
9- ? 'https://depot.galaxyproject.org/singularity/thermorawfileparser:1.4.5--h05cac1d_1'
10- : 'biocontainers/thermorawfileparser:1.4.5--h05cac1d_1' } "
8+ container " ${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
9+ 'https://depot.galaxyproject.org/singularity/thermorawfileparser:2.0.0.dev--h9ee0642_0' :
10+ 'biocontainers/thermorawfileparser:2.0.0.dev--h9ee0642_0' } "
1111
1212 input:
1313 tuple val(meta), path(raw)
1414
1515 output:
1616 tuple val(meta), path(" *.{mzML,mzML.gz,mgf,mgf.gz,parquet,parquet.gz}" ), emit: spectra
17- tuple val(" ${ task.process} " ), val(' thermorawfileparser' ), eval(" ThermoRawFileParser.sh --version" ), emit: versions_thermorawfileparser, topic: versions
17+ tuple val(" ${ task.process} " ), val(' thermorawfileparser' ), eval(" thermorawfileparser --version" ), emit: versions_thermorawfileparser, topic: versions
1818 path " *.log" , emit: log
1919
2020 when:
@@ -40,7 +40,7 @@ process THERMORAWFILEPARSER {
4040 suffix = args. contains(" --gzip" ) ? " ${ suffix} .gz" : " ${ suffix} "
4141
4242 """
43- ThermoRawFileParser.sh \\
43+ thermorawfileparser \\
4444 -i='${ raw} ' \\
4545 ${ formatArg} ${ args} \\
4646 -o=./ 2>&1 | tee '${ prefix} _conversion.log'
@@ -66,7 +66,7 @@ process THERMORAWFILEPARSER {
6666
6767 cat <<-END_VERSIONS > versions.yml
6868 "${ task.process} ":
69- ThermoRawFileParser: \$ (ThermoRawFileParser.sh --version)
69+ ThermoRawFileParser: \$ (thermorawfileparser --version)
7070 END_VERSIONS
7171 """
7272}
0 commit comments