Mercurial > repos > petr-novak > long_reads_sampling
annotate long_reads_sampling.xml @ 4:060fc04af21c draft default tip
planemo upload for repository https://github.com/kavonrtep/galaxy_tools commit dcff0045d0b212ebc5c4bef6a824bdbd3bb16ac3
author | petr-novak |
---|---|
date | Fri, 08 Dec 2023 13:11:02 +0000 |
parents | 9819570dc020 |
children |
rev | line source |
---|---|
3
9819570dc020
planemo upload for repository https://github.com/kavonrtep/galaxy_tools commit 5cc98a80e4e99f2b4089b9a8de458035304a6319
petr-novak
parents:
2
diff
changeset
|
1 <tool id="long_reads_sampling" name="Create sample of long reads" version="0.1.1"> |
0 | 2 <requirements> |
3 <requirement type="package">biopython</requirement> | |
1 | 4 <requirement type="package" version="3.6" >python</requirement> |
0 | 5 </requirements> |
3
9819570dc020
planemo upload for repository https://github.com/kavonrtep/galaxy_tools commit 5cc98a80e4e99f2b4089b9a8de458035304a6319
petr-novak
parents:
2
diff
changeset
|
6 <required_files> |
9819570dc020
planemo upload for repository https://github.com/kavonrtep/galaxy_tools commit 5cc98a80e4e99f2b4089b9a8de458035304a6319
petr-novak
parents:
2
diff
changeset
|
7 <include type="literal" path="long2short.py"/> |
4
060fc04af21c
planemo upload for repository https://github.com/kavonrtep/galaxy_tools commit dcff0045d0b212ebc5c4bef6a824bdbd3bb16ac3
petr-novak
parents:
3
diff
changeset
|
8 <include type="literal" path="long_reads_sampling.py"/> |
3
9819570dc020
planemo upload for repository https://github.com/kavonrtep/galaxy_tools commit 5cc98a80e4e99f2b4089b9a8de458035304a6319
petr-novak
parents:
2
diff
changeset
|
9 </required_files> |
0 | 10 <command detect_errors="exit_code"><![CDATA[ |
11 python3 $__tool_directory__/long_reads_sampling.py -i "$input1" -o "$output1" -l ${total_length} -s ${seed} | |
12 ]]></command> | |
13 <inputs> | |
14 <param type="data" name="input1" format="fasta" label="input sequence in fasta format"/> | |
15 <param name="total_length" type="integer" label="Total length of sampled sequences" value="10000" /> | |
16 <param name="seed" type="integer" label="seed for setting random number generator" value="123" /> | |
17 </inputs> | |
18 <outputs> | |
19 <data name="output1" format="fasta" /> | |
20 </outputs> | |
21 <tests> | |
22 <test> | |
23 <param name="input1" value="read_10k_ALL_oxford_nanopore_sample" /> | |
24 <param name="total_length" value="1000000" /> | |
1 | 25 <param name="seed" value="123" /> |
0 | 26 <output name="output1" file="sampled.fasta"/> |
27 </test> | |
28 </tests> | |
29 <help><![CDATA[ | |
30 This tools is for random sampling of long reads te get specified total amount of data | |
31 ]]></help> | |
32 <citations> | |
33 </citations> | |
34 </tool> |