comparison macs2_predictd.xml @ 63:25e46cf1ee36 draft default tip

"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit e8307adcc6ee9245fa2bb9ecb6de1cbe008dc2c3"
author iuc
date Sat, 02 Apr 2022 21:36:50 +0000
parents 1ac88e46ee0f
children
comparison
equal deleted inserted replaced
62:1ac88e46ee0f 63:25e46cf1ee36
1 <tool id="macs2_predictd" name="MACS2 predictd" version="@VERSION_STRING@.1"> 1 <tool id="macs2_predictd" name="MACS2 predictd" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="20.01">
2 <description>Predict 'd' or fragment size from alignment results</description> 2 <description>Predict 'd' or fragment size from alignment results</description>
3 <expand macro="bio_tools"/> 3 <expand macro="bio_tools"/>
4 <macros> 4 <macros>
5 <import>macs2_macros.xml</import> 5 <import>macs2_macros.xml</import>
6 </macros> 6 </macros>
14 -i ${ ' '.join(["'%s'" % $x for $x in $infiles ]) } 14 -i ${ ' '.join(["'%s'" % $x for $x in $infiles ]) }
15 @tag_size@ 15 @tag_size@
16 @effective_genome_size@ 16 @effective_genome_size@
17 --bw '${ band_width }' 17 --bw '${ band_width }'
18 @mfold_command@ 18 @mfold_command@
19 --d-min $d_min
20 @buffer_size@
19 21
20 ## remove the timepoint and strip the output 22 ## remove the timepoint and strip the output
21 2>&1 | awk -F: '{print $4}' | awk '{$1=$1}1' 23 2>&1 | awk -F: '{print $4}' | awk '{$1=$1}1'
22 24
23 > '${ outfile }' 25 > '${ outfile }'
32 help="If multiple files are given, then they will all be read and combined. Note that pair-end data is not supposed to work with this command. (-i)" /> 34 help="If multiple files are given, then they will all be read and combined. Note that pair-end data is not supposed to work with this command. (-i)" />
33 <expand macro="conditional_effective_genome_size" /> 35 <expand macro="conditional_effective_genome_size" />
34 <expand macro="tag_size" /> 36 <expand macro="tag_size" />
35 <expand macro="band_width" /> 37 <expand macro="band_width" />
36 <expand macro="mfold_options" /> 38 <expand macro="mfold_options" />
39 <expand macro="fragment_size"/>
40 <expand macro="buffer_size"/>
37 </inputs> 41 </inputs>
38 42
39 <outputs> 43 <outputs>
40 <data name="outfile" format="txt" label="${tool.name} on ${on_string} - d value" /> 44 <data name="outfile" format="txt" label="${tool.name} on ${on_string} - d value" />
41 <data name="outfile_image" from_work_dir="predictd_model.pdf" format="pdf" label="${tool.name} on ${on_string} - X-correlation image" /> 45 <data name="outfile_image" from_work_dir="predictd_model.pdf" format="pdf" label="${tool.name} on ${on_string} - X-correlation image" />
47 <param name="gsize" value="3300000000" /> 51 <param name="gsize" value="3300000000" />
48 <param name="tsize" value=""/> 52 <param name="tsize" value=""/>
49 <param name="band_width" value="300"/> 53 <param name="band_width" value="300"/>
50 <param name="lower" value="5"/> 54 <param name="lower" value="5"/>
51 <param name="upper" value="50"/> 55 <param name="upper" value="50"/>
56 <assert_command>
57 <has_text text="--buffer-size"/>
58 <has_text text="--d-min"/>
59 </assert_command>
52 <output name="outfile"> 60 <output name="outfile">
53 <assert_contents> 61 <assert_contents>
54 <has_line line="# predicted fragment length is 284 bps" /> 62 <has_line line="# predicted fragment length is 284 bps" />
55 </assert_contents> 63 </assert_contents>
56 </output> 64 </output>
57 <output name="outfile_image" file="predictd_on_ChIP_200K_and_Control_200K.pdf" compare="sim_size"/> 65 <output name="outfile_image" file="predictd_on_ChIP_200K_and_Control_200K.pdf" compare="sim_size" ftype="pdf"/>
58 </test> 66 </test>
59 </tests> 67 </tests>
60 <help> 68 <help>
61 <![CDATA[ 69 <![CDATA[
62 **What it does** 70 **What it does**