annotate macs2_randsample.xml @ 5:beb902da6e5f draft

planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit e10f301c7f8c54a7d12df4e631527197baccf70b
author iuc
date Sat, 08 Apr 2017 08:28:57 -0400
parents bfe57d6e0c4c
children acbd3fb47f90
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
fe62ba547975 Uploaded
iuc
parents:
diff changeset
1 <tool id="macs2_randsample" name="MACS2 randsample" version="@VERSION_STRING@.0">
fe62ba547975 Uploaded
iuc
parents:
diff changeset
2 <description>Randomly sample number or percentage of total reads</description>
fe62ba547975 Uploaded
iuc
parents:
diff changeset
3 <macros>
fe62ba547975 Uploaded
iuc
parents:
diff changeset
4 <import>macs2_macros.xml</import>
fe62ba547975 Uploaded
iuc
parents:
diff changeset
5 </macros>
2
bfe57d6e0c4c planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit 63955994af5090ec444c03c221df0012d5ae4e74
iuc
parents: 0
diff changeset
6 <expand macro="requirements" />
bfe57d6e0c4c planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit 63955994af5090ec444c03c221df0012d5ae4e74
iuc
parents: 0
diff changeset
7 <expand macro="stdio" />
bfe57d6e0c4c planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit 63955994af5090ec444c03c221df0012d5ae4e74
iuc
parents: 0
diff changeset
8 <expand macro="version_command" />
0
fe62ba547975 Uploaded
iuc
parents:
diff changeset
9 <command>
5
beb902da6e5f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit e10f301c7f8c54a7d12df4e631527197baccf70b
iuc
parents: 2
diff changeset
10 <![CDATA[
0
fe62ba547975 Uploaded
iuc
parents:
diff changeset
11 macs2 randsample
5
beb902da6e5f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit e10f301c7f8c54a7d12df4e631527197baccf70b
iuc
parents: 2
diff changeset
12 -t '${ infile }'
beb902da6e5f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit e10f301c7f8c54a7d12df4e631527197baccf70b
iuc
parents: 2
diff changeset
13 -o '${ outfile }'
beb902da6e5f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit e10f301c7f8c54a7d12df4e631527197baccf70b
iuc
parents: 2
diff changeset
14 --seed '${ seed }'
0
fe62ba547975 Uploaded
iuc
parents:
diff changeset
15
5
beb902da6e5f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit e10f301c7f8c54a7d12df4e631527197baccf70b
iuc
parents: 2
diff changeset
16 --format '${ infile.extension.upper() }'
0
fe62ba547975 Uploaded
iuc
parents:
diff changeset
17
5
beb902da6e5f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit e10f301c7f8c54a7d12df4e631527197baccf70b
iuc
parents: 2
diff changeset
18 @tag_size@
beb902da6e5f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit e10f301c7f8c54a7d12df4e631527197baccf70b
iuc
parents: 2
diff changeset
19
0
fe62ba547975 Uploaded
iuc
parents:
diff changeset
20 #if $method_options.method_options_selector == 'percentage':
5
beb902da6e5f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit e10f301c7f8c54a7d12df4e631527197baccf70b
iuc
parents: 2
diff changeset
21 --percentage '${ method_options.percentage }'
0
fe62ba547975 Uploaded
iuc
parents:
diff changeset
22 #else:
5
beb902da6e5f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit e10f301c7f8c54a7d12df4e631527197baccf70b
iuc
parents: 2
diff changeset
23 --number '${ method_options.number }'
0
fe62ba547975 Uploaded
iuc
parents:
diff changeset
24 #end if
5
beb902da6e5f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit e10f301c7f8c54a7d12df4e631527197baccf70b
iuc
parents: 2
diff changeset
25 ]]>
0
fe62ba547975 Uploaded
iuc
parents:
diff changeset
26 </command>
fe62ba547975 Uploaded
iuc
parents:
diff changeset
27 <inputs>
fe62ba547975 Uploaded
iuc
parents:
diff changeset
28 <param name="infile" type="data" format="sam,bam,bed" label="Sequencing alignment file" />
fe62ba547975 Uploaded
iuc
parents:
diff changeset
29 <expand macro="tag_size" />
fe62ba547975 Uploaded
iuc
parents:
diff changeset
30 <conditional name="method_options">
fe62ba547975 Uploaded
iuc
parents:
diff changeset
31 <param name="method_options_selector" type="select" label="Select action to be performed">
fe62ba547975 Uploaded
iuc
parents:
diff changeset
32 <option value="percentage" selected="true">Percentage</option>
fe62ba547975 Uploaded
iuc
parents:
diff changeset
33 <option value="number">Number</option>
fe62ba547975 Uploaded
iuc
parents:
diff changeset
34 </param>
fe62ba547975 Uploaded
iuc
parents:
diff changeset
35 <when value="percentage">
5
beb902da6e5f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit e10f301c7f8c54a7d12df4e631527197baccf70b
iuc
parents: 2
diff changeset
36 <param name="percentage" type="float" value="80.0" label="Percentage of tags you want to keep" help="Percentage of tags you want to keep. Input 80.0 for 80%.(--percentage)"/>
0
fe62ba547975 Uploaded
iuc
parents:
diff changeset
37 </when>
fe62ba547975 Uploaded
iuc
parents:
diff changeset
38 <when value="number">
fe62ba547975 Uploaded
iuc
parents:
diff changeset
39 <param name="number" type="integer" value="800000" label="Number of tags you want to keep" help="Note that the number of tags in output is approximate as the number specified here (--number)" />
fe62ba547975 Uploaded
iuc
parents:
diff changeset
40 </when>
fe62ba547975 Uploaded
iuc
parents:
diff changeset
41 </conditional>
5
beb902da6e5f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit e10f301c7f8c54a7d12df4e631527197baccf70b
iuc
parents: 2
diff changeset
42 <param name="seed" type="integer" value="1" label="Random seed number" min="0" help="Set the random seed while down sampling data. Must be a positive integer in order to be effective. (--seed)"/>
0
fe62ba547975 Uploaded
iuc
parents:
diff changeset
43 </inputs>
fe62ba547975 Uploaded
iuc
parents:
diff changeset
44 <outputs>
fe62ba547975 Uploaded
iuc
parents:
diff changeset
45 <data name="outfile" format="bed" label="${tool.name} on ${on_string}" />
fe62ba547975 Uploaded
iuc
parents:
diff changeset
46 </outputs>
fe62ba547975 Uploaded
iuc
parents:
diff changeset
47 <tests>
5
beb902da6e5f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit e10f301c7f8c54a7d12df4e631527197baccf70b
iuc
parents: 2
diff changeset
48 <test>
beb902da6e5f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit e10f301c7f8c54a7d12df4e631527197baccf70b
iuc
parents: 2
diff changeset
49 <param name="infile" value="ChIP_200K.bed" ftype="bed" />
beb902da6e5f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit e10f301c7f8c54a7d12df4e631527197baccf70b
iuc
parents: 2
diff changeset
50 <param name="method_options_selector" value="percentage" />
beb902da6e5f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit e10f301c7f8c54a7d12df4e631527197baccf70b
iuc
parents: 2
diff changeset
51 <param name="percentage" value="80.0" />
beb902da6e5f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit e10f301c7f8c54a7d12df4e631527197baccf70b
iuc
parents: 2
diff changeset
52 <param name="seed" value="1" />
beb902da6e5f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit e10f301c7f8c54a7d12df4e631527197baccf70b
iuc
parents: 2
diff changeset
53 <output name="outfile" file="bdgrandsample_output.bed"/>
beb902da6e5f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit e10f301c7f8c54a7d12df4e631527197baccf70b
iuc
parents: 2
diff changeset
54 </test>
0
fe62ba547975 Uploaded
iuc
parents:
diff changeset
55 </tests>
fe62ba547975 Uploaded
iuc
parents:
diff changeset
56 <help>
5
beb902da6e5f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit e10f301c7f8c54a7d12df4e631527197baccf70b
iuc
parents: 2
diff changeset
57 <![CDATA[
0
fe62ba547975 Uploaded
iuc
parents:
diff changeset
58 **What it does**
fe62ba547975 Uploaded
iuc
parents:
diff changeset
59
5
beb902da6e5f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit e10f301c7f8c54a7d12df4e631527197baccf70b
iuc
parents: 2
diff changeset
60 This is **randsample** utility from the MACS2_ Package. It randomly samples reads by number or percentage from an input file.
beb902da6e5f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit e10f301c7f8c54a7d12df4e631527197baccf70b
iuc
parents: 2
diff changeset
61
beb902da6e5f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit e10f301c7f8c54a7d12df4e631527197baccf70b
iuc
parents: 2
diff changeset
62 .. _MACS2: https://github.com/taoliu/MACS
0
fe62ba547975 Uploaded
iuc
parents:
diff changeset
63
fe62ba547975 Uploaded
iuc
parents:
diff changeset
64 @citation@
5
beb902da6e5f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit e10f301c7f8c54a7d12df4e631527197baccf70b
iuc
parents: 2
diff changeset
65 ]]>
0
fe62ba547975 Uploaded
iuc
parents:
diff changeset
66 </help>
fe62ba547975 Uploaded
iuc
parents:
diff changeset
67 <expand macro="citations" />
fe62ba547975 Uploaded
iuc
parents:
diff changeset
68 </tool>