Mercurial > repos > iuc > macs2
annotate macs2_refinepeak.xml @ 6:2119d851a53b draft
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit df97bfd630719a2e1d4e11d67960753184afa238
author | iuc |
---|---|
date | Tue, 11 Apr 2017 17:46:41 -0400 |
parents | beb902da6e5f |
children | acbd3fb47f90 |
rev | line source |
---|---|
0 | 1 <tool id="macs2_refinepeak" name="MACS2 refinepeak" version="@VERSION_STRING@.0"> |
2 <description>Refine peak summits and give scores measuring balance of forward- backward tags (Experimental)</description> | |
3 <macros> | |
4 <import>macs2_macros.xml</import> | |
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 | 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 | 11 macs2 refinepeak |
5
beb902da6e5f
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit e10f301c7f8c54a7d12df4e631527197baccf70b
iuc
parents:
2
diff
changeset
|
12 -b '${ bed_infile }' |
beb902da6e5f
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit e10f301c7f8c54a7d12df4e631527197baccf70b
iuc
parents:
2
diff
changeset
|
13 -i '${ infile }' |
0 | 14 --format '${ infile.extension.upper() }' |
5
beb902da6e5f
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit e10f301c7f8c54a7d12df4e631527197baccf70b
iuc
parents:
2
diff
changeset
|
15 --cutoff '${ cutoff }' |
beb902da6e5f
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit e10f301c7f8c54a7d12df4e631527197baccf70b
iuc
parents:
2
diff
changeset
|
16 --window-size '${ winsize }' |
beb902da6e5f
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit e10f301c7f8c54a7d12df4e631527197baccf70b
iuc
parents:
2
diff
changeset
|
17 --ofile '${ outfile }' |
beb902da6e5f
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit e10f301c7f8c54a7d12df4e631527197baccf70b
iuc
parents:
2
diff
changeset
|
18 ]]> |
0 | 19 </command> |
20 <inputs> | |
21 <param name="infile" type="data" format="sam,bam,bed" label="Sequencing alignment file" /> | |
22 <param name="bed_infile" type="data" format="bed" label="Candidate peak file in BED format" /> | |
23 <param name="cutoff" type="float" label="Cutoff" value="5.0" help="default: 5.0 (--cutoff)"/> | |
24 <param name="winsize" type="integer" value="200" label="Scan window size on both side of the summit" help="default: 200bp (--window-size)" /> | |
25 </inputs> | |
26 | |
27 <outputs> | |
28 <data name="outfile" format="bed" label="${tool.name} on ${on_string}" /> | |
29 </outputs> | |
30 <tests> | |
31 <test> | |
5
beb902da6e5f
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit e10f301c7f8c54a7d12df4e631527197baccf70b
iuc
parents:
2
diff
changeset
|
32 <param name="infile" value="refinepeak_bam_input.bam" ftype="bam"/> |
beb902da6e5f
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit e10f301c7f8c54a7d12df4e631527197baccf70b
iuc
parents:
2
diff
changeset
|
33 <param name="bed_infile" value="refinepeak_bed_input.bed" ftype="bed"/> |
0 | 34 <param name="cutoff" value="5.0"/> |
35 <param name="winsize" value="200"/> | |
5
beb902da6e5f
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit e10f301c7f8c54a7d12df4e631527197baccf70b
iuc
parents:
2
diff
changeset
|
36 <output name="outfile" file="refinepeak_output.bed"/> |
0 | 37 </test> |
38 </tests> | |
39 <help> | |
5
beb902da6e5f
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit e10f301c7f8c54a7d12df4e631527197baccf70b
iuc
parents:
2
diff
changeset
|
40 <![CDATA[ |
0 | 41 **What it does** |
42 | |
5
beb902da6e5f
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit e10f301c7f8c54a7d12df4e631527197baccf70b
iuc
parents:
2
diff
changeset
|
43 This is **refinepeak** utility from the MACS2_ Package. It is an experimental utility that takes raw read alignments, refines peak summits and gives scores measuring balance of forward- backward tags. Inspired by the SPP_ pipeline. |
beb902da6e5f
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit e10f301c7f8c54a7d12df4e631527197baccf70b
iuc
parents:
2
diff
changeset
|
44 |
beb902da6e5f
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit e10f301c7f8c54a7d12df4e631527197baccf70b
iuc
parents:
2
diff
changeset
|
45 .. _MACS2: https://github.com/taoliu/MACS |
beb902da6e5f
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit e10f301c7f8c54a7d12df4e631527197baccf70b
iuc
parents:
2
diff
changeset
|
46 .. _SPP: http://compbio.med.harvard.edu/Supplements/ChIP-seq/ |
0 | 47 |
48 @citation@ | |
5
beb902da6e5f
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit e10f301c7f8c54a7d12df4e631527197baccf70b
iuc
parents:
2
diff
changeset
|
49 ]]> |
0 | 50 </help> |
51 <expand macro="citations" /> | |
52 </tool> |