comparison recetox_aplcms_remove_noise.xml @ 9:ffbabefbd2e2 draft

planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox_aplcms commit b88eaca14b030fc0023989f3c83479e4975d172a
author recetox
date Thu, 01 Aug 2024 10:59:18 +0000
parents 12bf74dd09f1
children 7acd11ddc061
comparison
equal deleted inserted replaced
8:b5a1f35abd8a 9:ffbabefbd2e2
1 <tool id="recetox_aplcms_remove_noise" name="recetox-aplcms - remove noise" version="@TOOL_VERSION@+galaxy3" profile="21.09"> 1 <tool id="recetox_aplcms_remove_noise" name="recetox-aplcms - remove noise" version="@TOOL_VERSION@+galaxy0" profile="21.09">
2 <description>filter noise and detect peaks in high resolution mass spectrometry (HRMS) profile data</description> 2 <description>filter noise and detect peaks in high resolution mass spectrometry (HRMS) profile data</description>
3 <macros> 3 <macros>
4 <import>macros.xml</import> 4 <import>macros.xml</import>
5 <import>help.xml</import> 5 <import>help.xml</import>
6 </macros> 6 </macros>
27 mz_tol = ${mz_tol}/1e6, 27 mz_tol = ${mz_tol}/1e6,
28 baseline_correct = $baseline_correct, 28 baseline_correct = $baseline_correct,
29 baseline_correct_noise_percentile = 0.05, 29 baseline_correct_noise_percentile = 0.05,
30 intensity_weighted = $intensity_weighted, 30 intensity_weighted = $intensity_weighted,
31 do.plot = FALSE, 31 do.plot = FALSE,
32 cache = FALSE 32 cache = FALSE,
33 grouping_threshold = as.numeric('$grouping_threshold')
33 ) 34 )
34 35
35 profile <- save_sample_name(profile, sample_name) 36 profile <- save_sample_name(profile, sample_name)
36 save_data_as_parquet_file(profile, '$output_file') 37 save_data_as_parquet_file(profile, '$output_file')
37 ]]></configfile> 38 ]]></configfile>
50 <tests> 51 <tests>
51 <test> 52 <test>
52 <param name="input_file" value="mbr_test0.mzml" ftype="mzml"/> 53 <param name="input_file" value="mbr_test0.mzml" ftype="mzml"/>
53 <output name="output_file" file="remove_noise_docker.parquet" ftype="parquet" /> 54 <output name="output_file" file="remove_noise_docker.parquet" ftype="parquet" />
54 </test> 55 </test>
56 <test>
57 <param name="input_file" value="mbr_test0.mzml" ftype="mzml"/>
58 <param name="grouping_threshold" value="2" />
59 <output name="output_file" file="remove_noise_docker_threshold.parquet" ftype="parquet" />
60 </test>
55 </tests> 61 </tests>
56 62
57 <help> 63 <help>
58 <![CDATA[ 64 <![CDATA[
59 @REMOVE_NOISE_HELP@ 65 @REMOVE_NOISE_HELP@