Mercurial > repos > iuc > macs2
annotate macs2_refinepeak.xml @ 59:ea526bc73f8a draft
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit 30858afbdbe0223d07d2936a8469295bcbeda786
| author | iuc |
|---|---|
| date | Mon, 15 Oct 2018 06:48:49 -0400 |
| parents | 8f6b37d29df5 |
| children | 644444825ef9 |
| 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" /> |
|
53
8f6b37d29df5
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit 586ecaebf9e6020fac2674fbda368e293d1c9bc2
iuc
parents:
49
diff
changeset
|
9 <command><![CDATA[ |
|
8f6b37d29df5
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit 586ecaebf9e6020fac2674fbda368e293d1c9bc2
iuc
parents:
49
diff
changeset
|
10 @home_dir@ |
| 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 }' |
|
53
8f6b37d29df5
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit 586ecaebf9e6020fac2674fbda368e293d1c9bc2
iuc
parents:
49
diff
changeset
|
18 ]]></command> |
| 33 | 19 <inputs> |
| 20 <param name="infile" type="data" format="sam,bam,bed" label="Sequencing alignment file" /> | |
| 21 <param name="bed_infile" type="data" format="bed" label="Candidate peak file in BED format" /> | |
| 22 <param name="cutoff" type="float" label="Cutoff" value="5.0" help="default: 5.0 (--cutoff)"/> | |
| 23 <param name="winsize" type="integer" value="200" label="Scan window size on both side of the summit" help="default: 200bp (--window-size)" /> | |
| 24 </inputs> | |
| 25 | |
| 26 <outputs> | |
| 27 <data name="outfile" format="bed" label="${tool.name} on ${on_string}" /> | |
| 28 </outputs> | |
| 29 <tests> | |
| 30 <test> | |
|
49
1b3f899ef044
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit e10f301c7f8c54a7d12df4e631527197baccf70b
iuc
parents:
36
diff
changeset
|
31 <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
|
32 <param name="bed_infile" value="refinepeak_bed_input.bed" ftype="bed"/> |
| 33 | 33 <param name="cutoff" value="5.0"/> |
| 34 <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
|
35 <output name="outfile" file="refinepeak_output.bed"/> |
| 33 | 36 </test> |
| 37 </tests> | |
| 38 <help> | |
|
49
1b3f899ef044
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit e10f301c7f8c54a7d12df4e631527197baccf70b
iuc
parents:
36
diff
changeset
|
39 <![CDATA[ |
| 33 | 40 **What it does** |
| 41 | |
|
49
1b3f899ef044
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit e10f301c7f8c54a7d12df4e631527197baccf70b
iuc
parents:
36
diff
changeset
|
42 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
|
43 |
|
1b3f899ef044
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit e10f301c7f8c54a7d12df4e631527197baccf70b
iuc
parents:
36
diff
changeset
|
44 .. _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
|
45 .. _SPP: http://compbio.med.harvard.edu/Supplements/ChIP-seq/ |
| 33 | 46 |
| 47 @citation@ | |
|
49
1b3f899ef044
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit e10f301c7f8c54a7d12df4e631527197baccf70b
iuc
parents:
36
diff
changeset
|
48 ]]> |
| 33 | 49 </help> |
| 50 <expand macro="citations" /> | |
| 51 </tool> |
