annotate porechop.xml @ 4:a2899db6bd6e draft default tip

planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit f04670edc196c683e09beb1fc1d8bc731162d47f
author iuc
date Sun, 09 Feb 2025 20:38:35 +0000
parents 543cbeef3949
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
4
a2899db6bd6e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit f04670edc196c683e09beb1fc1d8bc731162d47f
iuc
parents: 3
diff changeset
1 <tool id="porechop" name="Porechop" version="@WRAPPER_VERSION@+galaxy1" profile="20.01">
0
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
2 <description>adapter trimmer for Oxford Nanopore reads</description>
2
5f76b20953e5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit e68e5869f08e66fbe2787f23b58c1d66e61d9df2"
iuc
parents: 1
diff changeset
3 <macros>
5f76b20953e5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit e68e5869f08e66fbe2787f23b58c1d66e61d9df2"
iuc
parents: 1
diff changeset
4 <token name="@WRAPPER_VERSION@">0.2.4</token>
5f76b20953e5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit e68e5869f08e66fbe2787f23b58c1d66e61d9df2"
iuc
parents: 1
diff changeset
5 </macros>
0
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
6 <requirements>
2
5f76b20953e5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit e68e5869f08e66fbe2787f23b58c1d66e61d9df2"
iuc
parents: 1
diff changeset
7 <requirement type="package" version="@WRAPPER_VERSION@">porechop</requirement>
0
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
8 </requirements>
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
9 <version_command>porechop --version</version_command>
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
10 <command detect_errors="exit_code"><![CDATA[
4
a2899db6bd6e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit f04670edc196c683e09beb1fc1d8bc731162d47f
iuc
parents: 3
diff changeset
11 #import re
a2899db6bd6e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit f04670edc196c683e09beb1fc1d8bc731162d47f
iuc
parents: 3
diff changeset
12
a2899db6bd6e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit f04670edc196c683e09beb1fc1d8bc731162d47f
iuc
parents: 3
diff changeset
13 #set file_path = re.sub('[^\s\w\-.]', '_', str($input_file.element_identifier))
a2899db6bd6e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit f04670edc196c683e09beb1fc1d8bc731162d47f
iuc
parents: 3
diff changeset
14
a2899db6bd6e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit f04670edc196c683e09beb1fc1d8bc731162d47f
iuc
parents: 3
diff changeset
15 ln -s '$input_file' '$file_path' &&
a2899db6bd6e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit f04670edc196c683e09beb1fc1d8bc731162d47f
iuc
parents: 3
diff changeset
16
0
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
17 porechop
4
a2899db6bd6e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit f04670edc196c683e09beb1fc1d8bc731162d47f
iuc
parents: 3
diff changeset
18 -i '$file_path'
0
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
19 --format '$format'
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
20 --barcode_threshold '$barcode_binning_settings.barcode_threshold'
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
21 --barcode_diff '$barcode_binning_settings.barcode_diff'
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
22 $barcode_binning_settings.require_two_barcodes
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
23 $barcode_binning_settings.discard_unassigned
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
24 --adapter_threshold '$adapter_search_settings.adapter_threshold'
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
25 --check_reads '$adapter_search_settings.check_reads'
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
26 --scoring_scheme '$adapter_search_settings.scoring_scheme'
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
27 --end_size '$end_adapter_settings.end_size'
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
28 --min_trim_size '$end_adapter_settings.min_trim_size'
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
29 --extra_end_trim '$end_adapter_settings.extra_end_trim'
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
30 --end_threshold '$end_adapter_settings.end_threshold'
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
31 $middle_adapter_settings.no_split
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
32 $middle_adapter_settings.discard_middle
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
33 --middle_threshold '$middle_adapter_settings.middle_threshold'
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
34 --extra_middle_trim_good_side '$middle_adapter_settings.extra_middle_trim_good_side'
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
35 --extra_middle_trim_bad_side '$middle_adapter_settings.extra_middle_trim_bad_side'
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
36 --min_split_read_size '$middle_adapter_settings.min_split_read_size'
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
37 -o 'out.$format'
4
a2899db6bd6e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit f04670edc196c683e09beb1fc1d8bc731162d47f
iuc
parents: 3
diff changeset
38 #if $log_file
a2899db6bd6e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit f04670edc196c683e09beb1fc1d8bc731162d47f
iuc
parents: 3
diff changeset
39 > '$log_output'
a2899db6bd6e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit f04670edc196c683e09beb1fc1d8bc731162d47f
iuc
parents: 3
diff changeset
40 #end if
0
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
41
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
42 ]]></command>
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
43 <inputs>
3
543cbeef3949 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit 6ea6e816d7c92599628ab3c0a0826fb7476270b0"
iuc
parents: 2
diff changeset
44 <param name="input_file" type="data" format="fasta,fasta.gz,fastqsanger,fastqsanger.gz,fastq,fastq.gz" label="Input FASTA/FASTQ" help="FASTA/FASTQ of input reads" />
1
93d623d9979c planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit 4155cc1e26dd6e647d882a550b5278141ab39314
iuc
parents: 0
diff changeset
45 <param name="format" type="select" label="Output format for the reads" help="Output format for the reads">
93d623d9979c planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit 4155cc1e26dd6e647d882a550b5278141ab39314
iuc
parents: 0
diff changeset
46 <option selected="True" value="fasta">fasta</option>
93d623d9979c planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit 4155cc1e26dd6e647d882a550b5278141ab39314
iuc
parents: 0
diff changeset
47 <option value="fastq">fastq</option>
93d623d9979c planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit 4155cc1e26dd6e647d882a550b5278141ab39314
iuc
parents: 0
diff changeset
48 <option value="fasta.gz">fasta.gz</option>
93d623d9979c planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit 4155cc1e26dd6e647d882a550b5278141ab39314
iuc
parents: 0
diff changeset
49 <option value="fastq.gz">fastq.gz</option>
0
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
50 </param>
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
51 <section name="barcode_binning_settings" title="Barcode binning settings">
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
52 <param argument="--barcode_threshold" type="float" min="0" max="100" value="75.0" optional="True" label="Percent identity for binning"
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
53 help="A read must have at least this percent identity to a barcode to be binned (default: 75.0)"/>
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
54 <param argument="--barcode_diff" type="float" min="0" max="100" value="5.0" optional="True" label="Minimum difference in identity"
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
55 help="If the difference between a read's best barcode identity and its second-best barcode identity is less than this value, it will not be put in a barcode bin (to exclude cases which are too close to call) (default: 5.0)"/>
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
56 <param argument="--require_two_barcodes" type="boolean" checked="false" truevalue="--require_two_barcodes" falsevalue="" label="Require two matches for binning"
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
57 help="Reads will only be put in barcode bins if they have a strong match for the barcode on both their start and end (default: a read can be binned with a match at its start or end)"/>
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
58 <param argument="--discard_unassigned" type="boolean" checked="false" truevalue="--discard_unassigned" falsevalue="" label="Discard unassigned reads"
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
59 help="Discard unassigned reads (instead of creating a 'none' bin) (default: False)"/>
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
60 </section>
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
61 <section name="adapter_search_settings" title="Adapter search settings">
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
62 <param argument="--adapter_threshold" type="float" min="0" max="100" value="90.0" optional="True" label="Minimum identity"
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
63 help="An adapter set has to have at least this percent identity to be labelled as present and trimmed off (0 to 100) (default: 90.0)"/>
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
64 <param argument="--check_reads" type="integer" min="0" value="10000" optional="True" label="Number of alligned reads"
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
65 help="This many reads will be aligned to all possible adapters to determine which adapter sets are present (default: 10000)"/>
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
66 <param argument="--scoring_scheme" type="text" value="3,-6,-5,-2" label="Scoring scheme"
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
67 help="Comma-delimited string of alignment scores: match, mismatch, gap open, gap extend">
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
68 <validator type="regex" message="Scoring scheme must be comma-separated string of four positive/negative integers">^((-?\d+[,]){3})-?\d+$</validator>
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
69 </param>
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
70 </section>
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
71 <section name="end_adapter_settings" title="End adapter settings">
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
72 <param argument="--end_size" type="integer" min="0" value="150" optional="True" label="Number of bases"
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
73 help="The number of base pairs at each end of the read which will be searched for adapter sequences (default: 150)"/>
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
74 <param argument="--min_trim_size" type="integer" min="0" value="4" optional="True" label="Minimum trim length"
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
75 help="Adapter alignments smaller than this will be ignored (default: 4)"/>
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
76 <param argument="--extra_end_trim" type="integer" min="0" value="2" optional="True" label="Extra bases trimmed"
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
77 help="This many additional bases will be removed next to adapters found at the ends of reads (default: 2)"/>
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
78 <param argument="--end_threshold" type="float" min="0" max="100" value="75.0" optional="True" label="Minimum percent identity"
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
79 help="Adapters at the ends of reads must have at least this percent identity to be removed (0 to 100) (default: 75.0)"/>
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
80 </section>
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
81 <section name="middle_adapter_settings" title="Middle adapter settings">
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
82 <param argument="--no_split" type="boolean" checked="false" truevalue="--no_split" falsevalue="" label="Skip splitting"
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
83 help="Skip splitting reads based on middle adapters (default: split reads when an adapter is found in the middle)"/>
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
84 <param argument="--discard_middle" type="boolean" checked="false" truevalue="--discard_middle" falsevalue="" label="Discard reads with middle adapter"
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
85 help="Reads with middle adapters will be discarded (default: reads with middle adapters are split) (required for reads to be used with Nanopolish, this option is on by default when outputting reads into barcode bins)"/>
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
86 <param argument="--middle_threshold" type="float" min="0" max="100" value="85.0" optional="True" label="Minimum percent identity"
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
87 help="Adapters in the middle of reads must have at least this percent identity to be found (0 to 100) (default: 85.0)"/>
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
88 <param argument="--extra_middle_trim_good_side" type="integer" min="0" value="10" optional="True" label="Extra trimming good side"
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
89 help="This many additional bases will be removed next to middle adapters on their 'good' side (default: 10)"/>
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
90 <param argument="--extra_middle_trim_bad_side" type="integer" min="0" value="100" optional="True" label="Extra trimming bad side"
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
91 help="This many additional bases will be removed next to middle adapters on their 'bad' side (default: 100)"/>
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
92 <param argument="--min_split_read_size" type="integer" min="0" value="1000" optional="True" label="Minimum length reads post-split"
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
93 help="Post-split read pieces smaller than this many base pairs will not be outputted (default: 1000)"/>
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
94 </section>
4
a2899db6bd6e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit f04670edc196c683e09beb1fc1d8bc731162d47f
iuc
parents: 3
diff changeset
95 <param name="log_file" type="boolean" label="Generate log file" help="Generates a log file out of stdout, which can be used as MultiQC input"/>
0
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
96 </inputs>
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
97 <outputs>
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
98 <data name="outfile" format="fasta" from_work_dir="out.*" label="${tool.name} on ${on_string}: Trimmed">
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
99 <change_format>
1
93d623d9979c planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit 4155cc1e26dd6e647d882a550b5278141ab39314
iuc
parents: 0
diff changeset
100 <when input="format" value="fastq" format="fastqsanger"/>
0
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
101 <when input="format" value="fasta.gz" format="fasta.gz"/>
1
93d623d9979c planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit 4155cc1e26dd6e647d882a550b5278141ab39314
iuc
parents: 0
diff changeset
102 <when input="format" value="fastq.gz" format="fastqsanger.gz"/>
0
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
103 </change_format>
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
104 </data>
4
a2899db6bd6e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit f04670edc196c683e09beb1fc1d8bc731162d47f
iuc
parents: 3
diff changeset
105 <data name="log_output" format="txt" label="Porechop log file">
a2899db6bd6e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit f04670edc196c683e09beb1fc1d8bc731162d47f
iuc
parents: 3
diff changeset
106 <filter>log_file</filter>
a2899db6bd6e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit f04670edc196c683e09beb1fc1d8bc731162d47f
iuc
parents: 3
diff changeset
107 </data>
0
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
108 </outputs>
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
109 <tests>
4
a2899db6bd6e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit f04670edc196c683e09beb1fc1d8bc731162d47f
iuc
parents: 3
diff changeset
110 <test expect_num_outputs="2">
0
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
111 <param name="input_file" ftype="fasta" value="test_format.fasta"/>
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
112 <param name="format" value="fasta"/>
4
a2899db6bd6e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit f04670edc196c683e09beb1fc1d8bc731162d47f
iuc
parents: 3
diff changeset
113 <param name="log_file" value="true"/>
0
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
114 <output name="outfile" ftype="fasta" file="out.fasta"/>
4
a2899db6bd6e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit f04670edc196c683e09beb1fc1d8bc731162d47f
iuc
parents: 3
diff changeset
115 <output name="log_output" ftype="txt">
a2899db6bd6e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit f04670edc196c683e09beb1fc1d8bc731162d47f
iuc
parents: 3
diff changeset
116 <assert_contents>
a2899db6bd6e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit f04670edc196c683e09beb1fc1d8bc731162d47f
iuc
parents: 3
diff changeset
117 <has_line line=" PCR adapters 2 66.7 63.6"/>
a2899db6bd6e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit f04670edc196c683e09beb1fc1d8bc731162d47f
iuc
parents: 3
diff changeset
118 <has_line line=" Barcode 1 (reverse) 59.4 66.7"/>
a2899db6bd6e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit f04670edc196c683e09beb1fc1d8bc731162d47f
iuc
parents: 3
diff changeset
119 <has_line line="4 / 9 reads had adapters trimmed from their start (74 bp removed)"/>
a2899db6bd6e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit f04670edc196c683e09beb1fc1d8bc731162d47f
iuc
parents: 3
diff changeset
120 <has_line line="3 / 9 reads had adapters trimmed from their end (49 bp removed)"/>
a2899db6bd6e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit f04670edc196c683e09beb1fc1d8bc731162d47f
iuc
parents: 3
diff changeset
121 </assert_contents>
a2899db6bd6e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit f04670edc196c683e09beb1fc1d8bc731162d47f
iuc
parents: 3
diff changeset
122 </output>
0
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
123 </test>
4
a2899db6bd6e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit f04670edc196c683e09beb1fc1d8bc731162d47f
iuc
parents: 3
diff changeset
124 <test expect_num_outputs="1">
2
5f76b20953e5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit e68e5869f08e66fbe2787f23b58c1d66e61d9df2"
iuc
parents: 1
diff changeset
125 <param name="input_file" ftype="fastqsanger.gz" value="test_format.fastq.gz"/>
0
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
126 <param name="format" value="fastq"/>
1
93d623d9979c planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit 4155cc1e26dd6e647d882a550b5278141ab39314
iuc
parents: 0
diff changeset
127 <output name="outfile" ftype="fastqsanger" file="out.fastq"/>
0
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
128 </test>
4
a2899db6bd6e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit f04670edc196c683e09beb1fc1d8bc731162d47f
iuc
parents: 3
diff changeset
129 <test expect_num_outputs="1">
3
543cbeef3949 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit 6ea6e816d7c92599628ab3c0a0826fb7476270b0"
iuc
parents: 2
diff changeset
130 <param name="input_file" ftype="fastq.gz" value="test_format.fastq.gz"/>
543cbeef3949 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit 6ea6e816d7c92599628ab3c0a0826fb7476270b0"
iuc
parents: 2
diff changeset
131 <param name="format" value="fastq"/>
543cbeef3949 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit 6ea6e816d7c92599628ab3c0a0826fb7476270b0"
iuc
parents: 2
diff changeset
132 <output name="outfile" ftype="fastqsanger" file="out.fastq"/>
543cbeef3949 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit 6ea6e816d7c92599628ab3c0a0826fb7476270b0"
iuc
parents: 2
diff changeset
133 </test>
4
a2899db6bd6e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit f04670edc196c683e09beb1fc1d8bc731162d47f
iuc
parents: 3
diff changeset
134 <test expect_num_outputs="1">
0
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
135 <param name="input_file" ftype="fasta" value="test_format.fasta"/>
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
136 <param name="format" value="fasta.gz"/>
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
137 <output name="outfile" ftype="fasta.gz" file="out.fasta.gz" compare="sim_size"/>
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
138 </test>
4
a2899db6bd6e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit f04670edc196c683e09beb1fc1d8bc731162d47f
iuc
parents: 3
diff changeset
139 <test expect_num_outputs="1">
0
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
140 <param name="input_file" ftype="fasta" value="test_format.fasta"/>
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
141 <param name="format" value="fastq.gz"/>
1
93d623d9979c planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit 4155cc1e26dd6e647d882a550b5278141ab39314
iuc
parents: 0
diff changeset
142 <output name="outfile" ftype="fastqsanger.gz" file="out.fastq.gz" compare="sim_size"/>
0
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
143 </test>
4
a2899db6bd6e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit f04670edc196c683e09beb1fc1d8bc731162d47f
iuc
parents: 3
diff changeset
144 <test expect_num_outputs="1">
0
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
145 <param name="input_file" ftype="fasta" value="test_format.fasta"/>
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
146 <param name="format" value="fasta"/>
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
147 <param name="barcode_threshold" value="70"/>
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
148 <param name="barcode_diff" value="4"/>
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
149 <param name="require_two_barcodes" value="True"/>
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
150 <param name="discard_unassigned" value="True"/>
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
151 <param name="end_size" value="100"/>
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
152 <param name="min_trim_size" value="2"/>
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
153 <param name="extra_end_trim" value="1"/>
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
154 <param name="end_threshold" value="80"/>
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
155 <param name="discard_middle" value="True"/>
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
156 <param name="middle_threshold" value="90"/>
4
a2899db6bd6e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit f04670edc196c683e09beb1fc1d8bc731162d47f
iuc
parents: 3
diff changeset
157 <param name="extra_middle_trim_good_side" value="3"/>
a2899db6bd6e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit f04670edc196c683e09beb1fc1d8bc731162d47f
iuc
parents: 3
diff changeset
158 <param name="extra_middle_trim_bad_side" value="30"/>
0
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
159 <param name="min_split_read_size" value="1500"/>
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
160 <output name="outfile" ftype="fasta" file="out_advanced.fasta"/>
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
161 </test>
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
162 </tests>
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
163 <help><![CDATA[
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
164 Porechop is a tool for finding and removing adapters from Oxford Nanopore reads.
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
165 Adapters on the ends of reads are trimmed off, and when a read has an adapter in
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
166 its middle, it is treated as chimeric and chopped into separate reads. Porechop
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
167 performs thorough alignments to effectively find adapters, even at low sequence identity.
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
168
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
169 Porechop also supports demultiplexing of Nanopore reads that were barcoded with
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
170 the Native Barcoding Kit, PCR Barcoding Kit or Rapid Barcoding Kit.
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
171 ]]></help>
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
172 <citations>
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
173 <citation type="bibtex">
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
174 @misc{rrwick2017,
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
175 author = {Wick, Ryan},
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
176 year = {2017},
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
177 title = {Porechop},
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
178 publisher = {GitHub},
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
179 journal = {GitHub repository},
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
180 url = {https://github.com/rrwick/Porechop},
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
181 }
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
182 </citation>
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
183 </citations>
24822689acf8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop commit b8cc84454aedcdbe22d385c1d7067fab599b9090
iuc
parents:
diff changeset
184 </tool>