# HG changeset patch
# User galaxyp
# Date 1749719691 0
# Node ID be5a0b2d8bd7123a9b64d711088850ead68fb219
# Parent 4d3da69301ae93071e3752667b36b59deabf2c8d
planemo upload for repository https://github.com/vdemichev/DiaNN commit 7066fc6839300c6703770e667f8534ed69248d25
diff -r 4d3da69301ae -r be5a0b2d8bd7 diann.xml
--- a/diann.xml Mon Mar 31 19:30:35 2025 +0000
+++ b/diann.xml Thu Jun 12 09:14:51 2025 +0000
@@ -2,7 +2,7 @@
is a software for DIA/SWATH data processing
1.8.1
- 4
+ 5
biocontainers/diann:@TOOL_VERSION@_cv2
@@ -17,14 +17,17 @@
## generate string like "--f file1 --f file2 ..." for each input in $input.f, which are comma separated
#set infiles_str = ''
#for $infile in $input.f
+ #if not $infile:
+ #continue
+ #end if
## if brukertdf.d.tar, extract to ./input_data and append "./input_data/" to infiles_str
#if $infile.is_of_type("brukertdf.d.tar"):
tar -xf '$infile' -C ./input_data &&
- #set $infiles_str += '--f ./input_data/' + str($infile.element_identifier[:-4])
+ #set $infiles_str += "--f './input_data/" + str($infile.element_identifier[:-4]) + "' "
#else
#set name = './input_data/' + $infile.element_identifier + '.' + $infile.ext
ln -s '$infile' '$name' &&
- #set $infiles_str += '--f ' + $name + ' '
+ #set $infiles_str += "--f '" + $name + "' "
#end if
#end for
@@ -38,8 +41,8 @@
#end if
diann
- #if $input.f != 'None'
- '$infiles_str'
+ #if $infiles_str != ''
+ $infiles_str
#end if
--dir ./
#if $input.spectral_lib_options.lib
@@ -47,8 +50,8 @@
#else
--lib
#end if
- #if $input.f != 'None'
- --out ./report.tsv
+ #if $infiles_str != ''
+ --out ./report.tsv
#end if
#if $input.spectral_lib_options.gen_spec_lib
--out-lib ./report-lib.tsv
@@ -228,16 +231,6 @@
--vis '$output_options.vis'
#end if
--verbose '$output_options.verbose'
-
- #if len($input.f) > 0
- && cp ./report.tsv '$output_report'
- #end if
-
- #if $input.spectral_lib_options.gen_spec_lib
- && cp ./report-lib.tsv '$output_report_lib'
- && cp ./report-lib.tsv.speclib '$output_report_speclib'
- && cp ./report-lib.predicted.speclib '$output_report_pred_speclib'
- #end if
]]>
@@ -417,16 +410,18 @@
-
+
input['f'] != None
-
+
input['spectral_lib_options']['gen_spec_lib'] == True
+ input['f'] != None
-
+
input['spectral_lib_options']['gen_spec_lib'] == True
+ input['f'] != None
-
+
input['spectral_lib_options']['gen_spec_lib'] == True
@@ -457,6 +452,20 @@
+
+
+
+
+
-