comparison dnp_mapping.xml @ 0:b4bef5178d86 draft default tip

"planemo upload commit 4846fbc43d4c7437de1ce996392fd13a71abd9c7"
author erinija
date Tue, 07 Sep 2021 15:03:57 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:b4bef5178d86
1 <tool id="dnp_mapping" name="Mapping nucleosome position" version="0.1.0">
2 <requirements>
3 <requirement type="package" version="1.0">dnp-mapping</requirement>
4 </requirements>
5 <command detect_errors="exit_code" interpreter="bash"><![CDATA[
6 dnp-mapping.sh '$input1' '$input2' '$input3' '$input4' '$output1' '$output2'
7 ]]></command>
8 <inputs>
9 <param type="data" name="input1" format="tabular" label="Tabular fasta" />
10 <param type="data" name="input2" format="tabular" label="Patterns matrix" />
11 <param name="input3" type="integer" value="0" label="Trim from start of sequences" />
12 <param name="input4" type="integer" value="400" label="Sequence length" />
13 </inputs>
14 <outputs>
15 <data name="output1" format="tabular" />
16 <data name="output2" format="tabular" />
17 </outputs>
18 <tests>
19 <test>
20 <param name="input1" value="601"/>
21 <param name="input2" value="class1_mtr"/>
22 <param name="input3" value="0"/>
23 <param name="input4" value="400"/>
24 <output name="output1" file="cf"/>
25 <output name="output2" file="pos"/>
26 </test>
27 </tests>
28 <help><![CDATA[
29
30 Description::
31
32
33 Maps nucleosome position in sequence given a pattern
34 of dinucleotide frequencies along the sequence by
35 computing a correlation between the sequence and the pattern.
36
37 Pattern matrix should contain a header line identifying
38 dinucleotides of which the pattern is. Trim from start
39 number tells how many positions to trim from the start
40 of the sequence (default 0). Sequence length is how many
41 positions in sequence to retain after trimming
42 (default the rest of the sequence).
43
44
45 Example::
46
47 Input tabular fasta:
48 Widom601Seq CGGGATCCTAATGACCAAGGAAAGCATGATTCTTCA...
49
50 Input pattern matrix file:
51 YY CC
52 0.285353 0.056062
53 0.281269 0.055327
54 0.280065 0.054823
55
56
57 Output tabular position file:
58 Widom601Seq test-data/class6_mtr 153 0.140767
59
60 ]]></help>
61 <citations>
62 <citation type="bibtex">
63 @article{ioshikhes2011,
64 title={Variety of genomic DNA patterns for nucleosome positioning},
65 author={Ioshikhes, Ilya and Hosid, Sergey and Pugh Franklin},
66 journal={Genome Research},
67 volume={21},
68 number={11},
69 pages={1863-1871},
70 year={2011},
71 publisher={CSH Press},
72 url = {https://genome.cshlp.org/content/21/11/1863.full}
73 }</citation>
74 </citations>
75 </tool>