Mercurial > repos > erinija > dnp_binary_strings
comparison dnp_binary_strings.xml @ 0:611156829647 draft default tip
"planemo upload commit 1a32efb8343938e8d49190003f251c78b5a58225-dirty"
| author | erinija |
|---|---|
| date | Fri, 01 May 2020 12:07:46 +0000 |
| parents | |
| children |
comparison
equal
deleted
inserted
replaced
| -1:000000000000 | 0:611156829647 |
|---|---|
| 1 <tool id="dnp_binary_strings" name="Binary strings from fasta" version="0.1.0"> | |
| 2 <requirements> | |
| 3 <requirement type="package" version="1.0">dnp-binstrings</requirement> | |
| 4 </requirements> | |
| 5 <command detect_errors="exit_code" interpreter="sh"><![CDATA[ | |
| 6 dnp-binary-strings.sh '$input1' '$input2' '$output1' | |
| 7 ]]></command> | |
| 8 <inputs> | |
| 9 <param type="data" name="input1" format="fasta" label="From fasta" /> | |
| 10 <param name="input2" type="text" value="AA AC" label="Dinucleotides" /> | |
| 11 </inputs> | |
| 12 <outputs> | |
| 13 <data name="output1" format="tabular" /> | |
| 14 </outputs> | |
| 15 <tests> | |
| 16 <test> | |
| 17 <param name="input1" value="seq4.fasta"/> | |
| 18 <param name="input2" value="AA AC"/> | |
| 19 <output name="output1" file="seq4.tabular"/> | |
| 20 </test> | |
| 21 </tests> | |
| 22 <help><![CDATA[ | |
| 23 | |
| 24 Description:: | |
| 25 | |
| 26 | |
| 27 Convert fasta sequences to a binary sequence of 01 | |
| 28 in which ones indicate a presence of a given | |
| 29 dinucleotide at that position. | |
| 30 | |
| 31 Each input fasta sequence has a corresponding output | |
| 32 row with tab separated columns- binary string, dinucleotide, | |
| 33 original fasta string, number of the dinucleotide occurrences | |
| 34 | |
| 35 | |
| 36 Example:: | |
| 37 | |
| 38 Input fasta: | |
| 39 chr9:42475963-42476182 | |
| 40 CCAGGCAGACCCCATA | |
| 41 | |
| 42 Output tabular: | |
| 43 100000000111000 CC chr9:42475963-42476182 CCAGGCAGACCCCATA 4 | |
| 44 | |
| 45 | |
| 46 ]]></help> | |
| 47 <citations> | |
| 48 <citation type="bibtex"> | |
| 49 @article{pranckeviciene2020nucleosome, | |
| 50 title={Nucleosome positioning sequence patterns as packing or regulatory. S1 Appendix}, | |
| 51 author={Pranckeviciene, Erinija and Hosid, Sergey and Liang, Nathan and Ioshikhes, Ilya}, | |
| 52 journal={PLoS computational biology}, | |
| 53 volume={16}, | |
| 54 number={1}, | |
| 55 pages={e1007365}, | |
| 56 year={2020}, | |
| 57 publisher={Public Library of Science}, | |
| 58 url = {https://doi.org/10.1371/journal.pcbi.1007365} | |
| 59 }</citation> | |
| 60 </citations> | |
| 61 </tool> |
