Mercurial > repos > bgruening > hicexplorer_hicfindrestrictionsites
comparison hicFindRestrictionSites.xml @ 0:8339f6708553 draft
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 3b41d687ff30583540d055f6995de00530cca81d-dirty"
author | bgruening |
---|---|
date | Mon, 16 Dec 2019 15:36:09 -0500 |
parents | |
children | fc0667d83f7c |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:8339f6708553 |
---|---|
1 <tool id="hicexplorer_hicfindrestrictionsites" name="@BINARY@" version="@WRAPPER_VERSION@.0"> | |
2 <description>identify TAD boundaries by computing the degree of separation of each Hi-C matrix bin</description> | |
3 <macros> | |
4 <token name="@BINARY@">findRestSite</token> | |
5 <import>macros.xml</import> | |
6 </macros> | |
7 <expand macro="requirements" /> | |
8 <command detect_errors="exit_code"><![CDATA[ | |
9 @BINARY@ | |
10 --fasta '$fasta' | |
11 --searchPattern '$searchPattern' | |
12 --outFile restriction_site.bed | |
13 | |
14 ]]></command> | |
15 <inputs> | |
16 <param argument="--fasta" type="data" format='fasta' | |
17 label="Fasta file for the organism genome." | |
18 help="The organism genome fasta file to compute the restriction enzyme position."/> | |
19 <param argument="--searchPattern" type="text" value="" | |
20 label="Restriction enzyme sequence" | |
21 help='Search pattern. For example, for HindIII this pattern is \"AAGCTT\". | |
22 Both, forward and reverse strand are searched for a match. The pattern | |
23 is a regexp and can contain regexp specif syntax | |
24 (see https://docs.python.org/2/library/re.html). For example the pattern | |
25 CG..GC will find all occurrence of CG followed by any two bases and then GC.'/> | |
26 </inputs> | |
27 <outputs> | |
28 | |
29 <data name="restrictionSites" from_work_dir="restriction_site.bed" format="bed" label="${tool.name} on ${fasta.name} ${searchPattern} [${on_string}]: Restriction sites"/> | |
30 | |
31 </outputs> | |
32 <tests> | |
33 <test> | |
34 <param name="fasta" value="hicFindRestrictionSites/reference_genome.fasta"/> | |
35 | |
36 <param name="searchPattern" value="GTAC"/> | |
37 | |
38 <output name="restrictionSites" file="hicFindRestrictionSites/restriction_sites.bed" ftype="bed" compare="sim_size"/> | |
39 </test> | |
40 </tests> | |
41 <help><![CDATA[ | |
42 | |
43 Find restriction sites | |
44 ====================== | |
45 | |
46 This scripts find the locations of a given restriction enzyme sequence. This file can be used to build an Hi-C interaction matrix with restriction enzyme resolution by hicBuildMatrix. | |
47 | |
48 | |
49 For more information about HiCExplorer please consider our documentation on readthedocs.io_ | |
50 | |
51 .. _readthedocs.io: http://hicexplorer.readthedocs.io/en/latest/index.html | |
52 ]]></help> | |
53 <expand macro="citations" /> | |
54 </tool> |