annotate matches.xml @ 2:1ec42f033bb4 draft default tip

"planemo upload for repository https://github.com/phac-nml/refseq_masher commit 7176dbde2cafbf0858e806923a9f0bd3b2ebf7c0"
author nml
date Fri, 25 Jun 2021 23:38:54 +0000
parents 2c1cb37a3ffe
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1
2c1cb37a3ffe planemo upload for repository https://github.com/phac-nml/refseq_masher commit e83730c5df84a960af58ff09db7eb09d11df2398
nml
parents: 0
diff changeset
1 <tool id="refseq_masher_matches" name="RefSeq Masher Matches" version="0.1.2">
0
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
2 <description>
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
3 Find closest matching NCBI RefSeq Genomes to your sequences
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
4 </description>
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
5 <requirements>
2
1ec42f033bb4 "planemo upload for repository https://github.com/phac-nml/refseq_masher commit 7176dbde2cafbf0858e806923a9f0bd3b2ebf7c0"
nml
parents: 1
diff changeset
6 <requirement type="package" version="0.1.2">refseq_masher</requirement>
0
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
7 </requirements>
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
8 <command detect_errors="exit_code">
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
9 <![CDATA[
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
10
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
11 #import re
1
2c1cb37a3ffe planemo upload for repository https://github.com/phac-nml/refseq_masher commit e83730c5df84a960af58ff09db7eb09d11df2398
nml
parents: 0
diff changeset
12 #import os
0
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
13
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
14 #if $input.type == 'fasta'
1
2c1cb37a3ffe planemo upload for repository https://github.com/phac-nml/refseq_masher commit e83730c5df84a960af58ff09db7eb09d11df2398
nml
parents: 0
diff changeset
15 #set $input_files = '"{}.fasta"'.format(os.path.splitext($input.fasta.name)[0])
0
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
16 ln -s "$input.fasta" $input_files &&
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
17 #elif $input.type == 'paired'
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
18 #set $_forward_ext = '.fastq.gz' if $re.match(r'.*\.gz$', $input.forward.name) else '.fastq'
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
19 #set $_forward = '"{}_1{}"'.format($re.sub(r'_[12]\..+$', '', $input.forward.name), $_forward_ext)
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
20 #set $_reverse_ext = '.fastq.gz' if $re.match(r'.*\.gz$', $input.reverse.name) else '.fastq'
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
21 #set $_reverse = '"{}_2{}"'.format($re.sub(r'_[12]\..+$', '', $input.reverse.name), $_reverse_ext)
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
22 #set $input_files = '{} {}'.format($_forward, $_reverse)
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
23 ln -s "$input.forward" $_forward &&
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
24 ln -s "$input.reverse" $_reverse &&
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
25 #elif $input.type == 'single'
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
26 #set $input_files = '"{}"'.format($input.single.name)
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
27 ln -s "$input.single" $input_files &&
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
28 #elif $input.type == 'paired_collection'
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
29 #set $_forward_ext = '.fastq.gz' if $re.match(r'.*\.gz$', str($input.paired_collection.forward)) else '.fastq'
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
30 #set $_forward = '"{}_1{}"'.format($input.paired_collection.name, $_forward_ext)
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
31 #set $_reverse_ext = '.fastq.gz' if $re.match(r'.*\.gz$', str($input.paired_collection.reverse)) else '.fastq'
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
32 #set $_reverse = '"{}_2{}"'.format($input.paired_collection.name, $_reverse_ext)
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
33 #set $input_files = '{} {}'.format($_forward, $_reverse)
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
34 ln -s "$input.paired_collection.forward" $_forward &&
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
35 ln -s "$input.paired_collection.reverse" $_reverse &&
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
36 #end if
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
37
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
38 refseq_masher
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
39 $adv.verbosity
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
40 matches
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
41 --output refseq_masher-matches.${adv.output_type}
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
42 --output-type $adv.output_type
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
43 --top-n-results $top_n_results
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
44 #if $adv.min_kmer_threshold
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
45 --min-kmer-threshold $adv.min_kmer_threshold
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
46 #end if
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
47 -T "\${TMPDIR:-/tmp}"
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
48 $input_files
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
49 ]]>
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
50 </command>
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
51 <inputs>
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
52 <conditional name="input">
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
53 <param name="type" type="select" label="Sequence input type">
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
54 <option value="fasta">Genome FASTA</option>
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
55 <option value="paired">Paired-end FASTQs</option>
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
56 <option value="single">Single-end FASTQ</option>
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
57 <option value="paired_collection">Paired-end FASTQ collection</option>
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
58 </param>
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
59 <when value="fasta">
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
60 <param name="fasta"
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
61 type="data" format="fasta"
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
62 optional="false"
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
63 label="Genome FASTA file"
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
64 />
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
65 </when>
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
66 <when value="paired">
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
67 <param name="forward"
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
68 type="data" format="fastq,fastqsanger,fastqillumina,fastqsolexa"
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
69 optional="false"
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
70 label="Forward FASTQ file"
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
71 />
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
72 <param name="reverse"
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
73 type="data" format="fastq,fastqsanger,fastqillumina,fastqsolexa"
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
74 optional="false"
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
75 label="Reverse FASTQ file"
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
76 help="File format must match the Forward FASTQ file"
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
77 />
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
78 </when>
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
79 <when value="single">
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
80 <param name="single"
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
81 type="data" format="fastq,fastqsanger,fastqillumina,fastqsolexa"
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
82 optional="false"
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
83 label="Single-end FASTQ file"
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
84 />
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
85 </when>
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
86 <when value="paired_collection">
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
87 <param name="paired_collection"
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
88 type="data_collection" format="fastq,fastqsanger,fastqillumina,fastqsolexa,fastq.gz,txt"
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
89 collection_type="paired"
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
90 optional="false"
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
91 label="Paired-end FASTQ collection"
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
92 />
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
93 </when>
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
94 </conditional>
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
95 <param name="top_n_results"
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
96 type="integer"
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
97 min="0"
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
98 value="20"
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
99 optional="true"
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
100 label="Top N matches to report (set to 0 to report all)"
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
101 />
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
102 <section name="adv" title="Advanced Options" expanded="false">
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
103 <param name="min_kmer_threshold"
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
104 type="integer"
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
105 min="1"
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
106 value="8"
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
107 optional="true"
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
108 label="Mash sketch of reads: Minimum copies of each k-mer required to pass noise filter for reads (default=8)"
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
109 />
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
110 <param name="output_type"
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
111 type="select"
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
112 label="Output type"
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
113 multiple="false">
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
114 <option value="tab" selected="true">
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
115 Tabular (tab-delimited values)
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
116 </option>
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
117 <option value="csv">
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
118 CSV (Comma Separated Values)
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
119 </option>
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
120 </param>
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
121 <param name="verbosity"
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
122 type="select"
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
123 label="Logging verbosity">
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
124 <option value="">Error messages only</option>
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
125 <option value="-v">Show warning messages</option>
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
126 <option value="-vv" selected="true">Show info messages</option>
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
127 <option value="-vvv">Show debug messages</option>
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
128 </param>
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
129 </section>
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
130 </inputs>
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
131 <outputs>
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
132 <data name="output_path_csv"
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
133 format="csv"
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
134 label="RefSeq Masher matches table"
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
135 from_work_dir="refseq_masher-matches.csv">
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
136 <filter>adv['output_type'] == 'csv'</filter>
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
137 </data>
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
138 <data name="output_path_tab"
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
139 format="tabular"
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
140 label="RefSeq Masher matches table"
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
141 from_work_dir="refseq_masher-matches.tab">
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
142 <filter>adv['output_type'] == 'tab'</filter>
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
143 </data>
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
144 </outputs>
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
145 <tests>
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
146 <test>
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
147 <conditional name="input">
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
148 <param name="type" value="fasta"/>
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
149 <param name="fasta" value="Se-Enteritidis.fasta"/>
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
150 </conditional>
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
151 <param name="top_n_results" value="1"/>
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
152 <section name="adv">
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
153 <param name="output_type" value="tab"/>
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
154 </section>
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
155 <output name="output_path_tab"
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
156 value="Se-Enteritidis-refseq_masher-matches.tab"
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
157 ftype="tabular"
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
158 lines_diff="0">
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
159 </output>
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
160 </test>
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
161 <test>
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
162 <conditional name="input">
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
163 <param name="type" value="single"/>
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
164 <param name="single" value="SRR1203042_1-head4000.fastq"/>
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
165 </conditional>
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
166 <param name="top_n_results" value="1"/>
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
167 <section name="adv">
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
168 <param name="output_type" value="tab"/>
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
169 <param name="min_kmer_threshold" value="2"/>
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
170 </section>
2
1ec42f033bb4 "planemo upload for repository https://github.com/phac-nml/refseq_masher commit 7176dbde2cafbf0858e806923a9f0bd3b2ebf7c0"
nml
parents: 1
diff changeset
171 <output name="output_path_tab" ftype="tabular">
1ec42f033bb4 "planemo upload for repository https://github.com/phac-nml/refseq_masher commit 7176dbde2cafbf0858e806923a9f0bd3b2ebf7c0"
nml
parents: 1
diff changeset
172 <assert_contents>
1ec42f033bb4 "planemo upload for repository https://github.com/phac-nml/refseq_masher commit 7176dbde2cafbf0858e806923a9f0bd3b2ebf7c0"
nml
parents: 1
diff changeset
173 <has_n_columns n="22" />
1ec42f033bb4 "planemo upload for repository https://github.com/phac-nml/refseq_masher commit 7176dbde2cafbf0858e806923a9f0bd3b2ebf7c0"
nml
parents: 1
diff changeset
174 <has_n_lines n="2" />
1ec42f033bb4 "planemo upload for repository https://github.com/phac-nml/refseq_masher commit 7176dbde2cafbf0858e806923a9f0bd3b2ebf7c0"
nml
parents: 1
diff changeset
175 </assert_contents>
0
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
176 </output>
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
177 </test>
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
178 </tests>
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
179 <help>
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
180 <![CDATA[
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
181 RefSeq Masher - Genomic Distance
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
182 ================================
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
183
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
184 Find what NCBI RefSeq genomes most closely match your sequence data using Mash_ with a Mash sketch database of 54,925 NCBI RefSeq Genomes.
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
185
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
186
1
2c1cb37a3ffe planemo upload for repository https://github.com/phac-nml/refseq_masher commit e83730c5df84a960af58ff09db7eb09d11df2398
nml
parents: 0
diff changeset
187 Source code available on Github at github.com/phac-nml/refseq_masher
0
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
188
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
189
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
190 `matches` - find the closest matching NCBI RefSeq Genomes in your input sequences
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
191 ---------------------------------------------------------------------------------
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
192
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
193 Command-line usage information::
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
194
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
195 Usage: refseq_masher matches [OPTIONS] INPUT...
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
196
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
197 Find NCBI RefSeq genome matches for an input genome fasta file
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
198
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
199 Input is expected to be one or more FASTA/FASTQ files or one or more
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
200 directories containing FASTA/FASTQ files. Files can be Gzipped.
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
201
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
202 Options:
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
203 --mash-bin TEXT Mash binary path (default="mash")
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
204 -o, --output PATH Output file path (default="-"/stdout)
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
205 --output-type [tab|csv] Output file type (tab|csv)
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
206 -n, --top-n-results INTEGER Output top N results sorted by distance in
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
207 ascending order (default=5)
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
208 -m, --min-kmer-threshold INTEGER
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
209 Mash sketch of reads: "Minimum copies of
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
210 each k-mer required to pass noise filter for
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
211 reads" (default=8)
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
212 -h, --help Show this message and exit.
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
213
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
214
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
215 Example
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
216 ~~~~~~~
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
217
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
218 With the FNA.GZ_ file for *Salmonella enterica* subsp. enterica serovar Enteritidis str. CHS44_::
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
219
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
220
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
221 # download sequence file
1
2c1cb37a3ffe planemo upload for repository https://github.com/phac-nml/refseq_masher commit e83730c5df84a960af58ff09db7eb09d11df2398
nml
parents: 0
diff changeset
222 wget ftp.ncbi.nlm.nih.gov/genomes/all/GCF/000/329/025/GCF_000329025.1_ASM32902v1/GCF_000329025.1_ASM32902v1_genomic.fna.gz
0
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
223
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
224 # find RefSeq matches
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
225 refseq_masher -vv matches GCF_000329025.1_ASM32902v1_genomic.fna.gz
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
226
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
227
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
228 **Log**::
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
229
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
230
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
231 2018-01-29 11:02:13,786 INFO: Collected 1 FASTA inputs and 0 read sets [in ...refseq_masher/refseq_masher/utils.py:185]
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
232 2018-01-29 11:02:13,786 INFO: Creating Mash sketch file for ...refseq_masher/GCF_000329025.1_ASM32902v1_genomic.fna.gz [in ...refseq_masher/refseq_masher/mash/sketch.py:24]
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
233 2018-01-29 11:02:14,055 INFO: Created Mash sketch file at "/tmp/GCF_000329025.1_ASM32902v1_genomic.msh" [in ...refseq_masher/refseq_masher/mash/sketch.py:40]
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
234 2018-01-29 11:02:14,613 INFO: Ran Mash dist successfully (output length=11647035). Parsing Mash dist output [in ...refseq_masher/refseq_masher/mash/dist.py:64]
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
235 2018-01-29 11:02:15,320 INFO: Parsed Mash dist output into Pandas DataFrame with 54924 rows [in ...refseq_masher/refseq_masher/mash/dist.py:67]
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
236 2018-01-29 11:02:15,321 INFO: Deleting temporary sketch file "/tmp/GCF_000329025.1_ASM32902v1_genomic.msh" [in ...refseq_masher/refseq_masher/mash/dist.py:72]
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
237 2018-01-29 11:02:15,321 INFO: Sketch file "/tmp/GCF_000329025.1_ASM32902v1_genomic.msh" deleted! [in ...refseq_masher/refseq_masher/mash/dist.py:74]
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
238 2018-01-29 11:02:15,322 INFO: Ran Mash dist on all input. Merging NCBI taxonomic information into results output. [in ...refseq_masher/refseq_masher/cli.py:88]
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
239 2018-01-29 11:02:15,323 INFO: Fetching all taxonomy info for 5 unique NCBI Taxonomy UIDs [in ...refseq_masher/refseq_masher/taxonomy.py:35]
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
240 2018-01-29 11:02:15,325 INFO: Dropping columns with all NA values (ncol=32) [in ...refseq_masher/refseq_masher/taxonomy.py:38]
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
241 2018-01-29 11:02:15,327 INFO: Columns with all NA values dropped (ncol=11) [in ...refseq_masher/refseq_masher/taxonomy.py:40]
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
242 2018-01-29 11:02:15,327 INFO: Merging Mash results with relevant taxonomic information [in ...refseq_masher/refseq_masher/taxonomy.py:41]
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
243 2018-01-29 11:02:15,329 INFO: Merged Mash results with taxonomy info [in ...refseq_masher/refseq_masher/taxonomy.py:43]
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
244 2018-01-29 11:02:15,329 INFO: Merged taxonomic info into results output [in ...refseq_masher/refseq_masher/cli.py:90]
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
245 2018-01-29 11:02:15,329 INFO: Reordering output columns [in ...refseq_masher/refseq_masher/cli.py:91]
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
246 2018-01-29 11:02:15,331 INFO: Writing output to stdout [in ...refseq_masher/refseq_masher/writers.py:16]
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
247
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
248
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
249 **Output**
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
250
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
251 +---------------------------------------+--------------------------------------------------------------------+----------+--------+----------+-------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------+---------------------+------------------+--------------------+------------------+---------------------+-------------------+-------------------------+------------+-------------+---------+-------------+--------------+--------+---------------------+------------------------------------------------------------------------------------------------------------------------------------------+
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
252 | sample | top_taxonomy_name | distance | pvalue | matching | full_taxonomy | taxonomic_subspecies | taxonomic_species | taxonomic_genus | taxonomic_family | taxonomic_order | taxonomic_class | taxonomic_phylum | taxonomic_superkingdom | subspecies | serovar | plasmid | bioproject | biosample | taxid | assembly_accession | match_id |
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
253 +=======================================+====================================================================+==========+========+==========+=============================================================================================================================================================+=====================================+=====================+==================+====================+==================+=====================+===================+=========================+============+=============+=========+=============+==============+========+=====================+==========================================================================================================================================+
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
254 | GCF_000329025.1_ASM32902v1_genomic | Salmonella enterica subsp. enterica serovar Enteritidis str. CHS44 | 0.0 | 0.0 | 400/400 | Bacteria; Proteobacteria; Gammaproteobacteria; Enterobacterales; Enterobacteriaceae; Salmonella; enterica; subsp. enterica; serovar Enteritidis; str. CHS44 | Salmonella enterica subsp. enterica | Salmonella enterica | Salmonella | Enterobacteriaceae | Enterobacterales | Gammaproteobacteria | Proteobacteria | Bacteria | enterica | Enteritidis | | PRJNA185053 | SAMN01041154 | 702979 | NZ_ALFF | ./rcn/refseq-NZ-702979-PRJNA185053-SAMN01041154-NZ_ALFF-.-Salmonella_enterica_subsp._enterica_serovar_Enteritidis_str._CHS44.fna |
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
255 +---------------------------------------+--------------------------------------------------------------------+----------+--------+----------+-------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------+---------------------+------------------+--------------------+------------------+---------------------+-------------------+-------------------------+------------+-------------+---------+-------------+--------------+--------+---------------------+------------------------------------------------------------------------------------------------------------------------------------------+
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
256
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
257
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
258 The top match is *Salmonella enterica* subsp. enterica serovar Enteritidis str. CHS44_ with a distance of 0.0 and 400/400 sketches matching, which is what we expected. There's other taxonomic information available in the results table that may be useful.
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
259
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
260
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
261
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
262 Legal
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
263 -----
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
264
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
265 Copyright Government of Canada 2017
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
266
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
267 Written by: National Microbiology Laboratory, Public Health Agency of Canada
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
268
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
269 Licensed under the Apache License, Version 2.0 (the "License"); you may not use
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
270 this work except in compliance with the License. You may obtain a copy of the
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
271 License at:
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
272
1
2c1cb37a3ffe planemo upload for repository https://github.com/phac-nml/refseq_masher commit e83730c5df84a960af58ff09db7eb09d11df2398
nml
parents: 0
diff changeset
273 www.apache.org/licenses/LICENSE-2.0
0
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
274
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
275 Unless required by applicable law or agreed to in writing, software distributed
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
276 under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
277 CONDITIONS OF ANY KIND, either express or implied. See the License for the
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
278 specific language governing permissions and limitations under the License.
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
279
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
280 Contact
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
281 -------
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
282
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
283 **Gary van Domselaar**: gary.vandomselaar@phac-aspc.gc.ca
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
284
1
2c1cb37a3ffe planemo upload for repository https://github.com/phac-nml/refseq_masher commit e83730c5df84a960af58ff09db7eb09d11df2398
nml
parents: 0
diff changeset
285 .. _Mash: genomebiology.biomedcentral.com/articles/10.1186/s13059-016-0997-x
2c1cb37a3ffe planemo upload for repository https://github.com/phac-nml/refseq_masher commit e83730c5df84a960af58ff09db7eb09d11df2398
nml
parents: 0
diff changeset
286 .. _FNA.GZ: ftp.ncbi.nlm.nih.gov/genomes/all/GCF/000/329/025/GCF_000329025.1_ASM32902v1/GCF_000329025.1_ASM32902v1_genomic.fna.gz
2c1cb37a3ffe planemo upload for repository https://github.com/phac-nml/refseq_masher commit e83730c5df84a960af58ff09db7eb09d11df2398
nml
parents: 0
diff changeset
287 .. _CHS44: ftp.ncbi.nlm.nih.gov/genomes/all/GCF/000/329/025/GCF_000329025.1_ASM32902v1/
0
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
288
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
289
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
290 ]]>
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
291 </help>
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
292 <citations>
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
293 <!-- Citation for Mash paper -->
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
294 <citation type="doi">10.1186/s13059-016-0997-x</citation>
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
295 </citations>
26df66c32861 planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff changeset
296 </tool>