Mercurial > repos > iuc > macs2
annotate macs2_refinepeak.xml @ 49:1b3f899ef044 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:38 -0400 |
parents | 8c8ae1e19b10 |
children | 8f6b37d29df5 |
rev | line source |
---|---|
33 | 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> | |
36
8c8ae1e19b10
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit 344140b8df53b8b7024618bb04594607a045c03a
iuc
parents:
33
diff
changeset
|
6 <expand macro="requirements" /> |
8c8ae1e19b10
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit 344140b8df53b8b7024618bb04594607a045c03a
iuc
parents:
33
diff
changeset
|
7 <expand macro="stdio" /> |
8c8ae1e19b10
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit 344140b8df53b8b7024618bb04594607a045c03a
iuc
parents:
33
diff
changeset
|
8 <expand macro="version_command" /> |
33 | 9 <command> |
49
1b3f899ef044
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit e10f301c7f8c54a7d12df4e631527197baccf70b
iuc
parents:
36
diff
changeset
|
10 <![CDATA[ |
33 | 11 macs2 refinepeak |
49
1b3f899ef044
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit e10f301c7f8c54a7d12df4e631527197baccf70b
iuc
parents:
36
diff
changeset
|
12 -b '${ bed_infile }' |
1b3f899ef044
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit e10f301c7f8c54a7d12df4e631527197baccf70b
iuc
parents:
36
diff
changeset
|
13 -i '${ infile }' |
33 | 14 --format '${ infile.extension.upper() }' |
49
1b3f899ef044
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit e10f301c7f8c54a7d12df4e631527197baccf70b
iuc
parents:
36
diff
changeset
|
15 --cutoff '${ cutoff }' |
1b3f899ef044
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit e10f301c7f8c54a7d12df4e631527197baccf70b
iuc
parents:
36
diff
changeset
|
16 --window-size '${ winsize }' |
1b3f899ef044
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit e10f301c7f8c54a7d12df4e631527197baccf70b
iuc
parents:
36
diff
changeset
|
17 --ofile '${ outfile }' |
1b3f899ef044
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit e10f301c7f8c54a7d12df4e631527197baccf70b
iuc
parents:
36
diff
changeset
|
18 ]]> |
33 | 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> | |
49
1b3f899ef044
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit e10f301c7f8c54a7d12df4e631527197baccf70b
iuc
parents:
36
diff
changeset
|
32 <param name="infile" value="refinepeak_bam_input.bam" ftype="bam"/> |
1b3f899ef044
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit e10f301c7f8c54a7d12df4e631527197baccf70b
iuc
parents:
36
diff
changeset
|
33 <param name="bed_infile" value="refinepeak_bed_input.bed" ftype="bed"/> |
33 | 34 <param name="cutoff" value="5.0"/> |
35 <param name="winsize" value="200"/> | |
49
1b3f899ef044
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit e10f301c7f8c54a7d12df4e631527197baccf70b
iuc
parents:
36
diff
changeset
|
36 <output name="outfile" file="refinepeak_output.bed"/> |
33 | 37 </test> |
38 </tests> | |
39 <help> | |
49
1b3f899ef044
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit e10f301c7f8c54a7d12df4e631527197baccf70b
iuc
parents:
36
diff
changeset
|
40 <![CDATA[ |
33 | 41 **What it does** |
42 | |
49
1b3f899ef044
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit e10f301c7f8c54a7d12df4e631527197baccf70b
iuc
parents:
36
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. |
1b3f899ef044
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit e10f301c7f8c54a7d12df4e631527197baccf70b
iuc
parents:
36
diff
changeset
|
44 |
1b3f899ef044
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit e10f301c7f8c54a7d12df4e631527197baccf70b
iuc
parents:
36
diff
changeset
|
45 .. _MACS2: https://github.com/taoliu/MACS |
1b3f899ef044
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit e10f301c7f8c54a7d12df4e631527197baccf70b
iuc
parents:
36
diff
changeset
|
46 .. _SPP: http://compbio.med.harvard.edu/Supplements/ChIP-seq/ |
33 | 47 |
48 @citation@ | |
49
1b3f899ef044
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit e10f301c7f8c54a7d12df4e631527197baccf70b
iuc
parents:
36
diff
changeset
|
49 ]]> |
33 | 50 </help> |
51 <expand macro="citations" /> | |
52 </tool> |