comparison hicFindRestrictionSites.xml @ 0:5c62f55474fc draft

"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 5744259254d4254a29cb7a6687fbbfd103301064"
author bgruening
date Thu, 06 Feb 2020 00:54:04 +0000 (2020-02-06)
parents
children c389a701161e
comparison
equal deleted inserted replaced
-1:000000000000 0:5c62f55474fc
1 <tool id="hicexplorer_hicfindrestrictionsites" name="@BINARY@" version="@WRAPPER_VERSION@.0">
2 <description>identify restriction enzyme sites</description>
3 <macros>
4 <token name="@BINARY@">hicFindRestSite</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>