Mercurial > repos > nml > refseq_masher
annotate matches.xml @ 1:2c1cb37a3ffe draft
planemo upload for repository https://github.com/phac-nml/refseq_masher commit e83730c5df84a960af58ff09db7eb09d11df2398
author | nml |
---|---|
date | Wed, 08 May 2019 09:15:56 -0400 |
parents | 26df66c32861 |
children | 1ec42f033bb4 |
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> |
26df66c32861
planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff
changeset
|
6 <requirement type="package" version="0.1.1">refseq_masher</requirement> |
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> |
26df66c32861
planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff
changeset
|
171 <output name="output_path_tab" |
26df66c32861
planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff
changeset
|
172 value="SRR1203042_1-head4000-refseq_masher-matches-m2.tab" |
26df66c32861
planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff
changeset
|
173 ftype="tabular" |
26df66c32861
planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff
changeset
|
174 lines_diff="0"> |
26df66c32861
planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff
changeset
|
175 </output> |
26df66c32861
planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff
changeset
|
176 </test> |
26df66c32861
planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff
changeset
|
177 </tests> |
26df66c32861
planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff
changeset
|
178 <help> |
26df66c32861
planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff
changeset
|
179 <![CDATA[ |
26df66c32861
planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff
changeset
|
180 RefSeq Masher - Genomic Distance |
26df66c32861
planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff
changeset
|
181 ================================ |
26df66c32861
planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff
changeset
|
182 |
26df66c32861
planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff
changeset
|
183 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
|
184 |
26df66c32861
planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff
changeset
|
185 |
1
2c1cb37a3ffe
planemo upload for repository https://github.com/phac-nml/refseq_masher commit e83730c5df84a960af58ff09db7eb09d11df2398
nml
parents:
0
diff
changeset
|
186 Source code available on Github at github.com/phac-nml/refseq_masher |
0
26df66c32861
planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff
changeset
|
187 |
26df66c32861
planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff
changeset
|
188 |
26df66c32861
planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff
changeset
|
189 `matches` - find the closest matching NCBI RefSeq Genomes in your input sequences |
26df66c32861
planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff
changeset
|
190 --------------------------------------------------------------------------------- |
26df66c32861
planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff
changeset
|
191 |
26df66c32861
planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff
changeset
|
192 Command-line usage information:: |
26df66c32861
planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff
changeset
|
193 |
26df66c32861
planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff
changeset
|
194 Usage: refseq_masher matches [OPTIONS] INPUT... |
26df66c32861
planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff
changeset
|
195 |
26df66c32861
planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff
changeset
|
196 Find NCBI RefSeq genome matches for an input genome fasta file |
26df66c32861
planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff
changeset
|
197 |
26df66c32861
planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff
changeset
|
198 Input is expected to be one or more FASTA/FASTQ files or one or more |
26df66c32861
planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff
changeset
|
199 directories containing FASTA/FASTQ files. Files can be Gzipped. |
26df66c32861
planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff
changeset
|
200 |
26df66c32861
planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff
changeset
|
201 Options: |
26df66c32861
planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff
changeset
|
202 --mash-bin TEXT Mash binary path (default="mash") |
26df66c32861
planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff
changeset
|
203 -o, --output PATH Output file path (default="-"/stdout) |
26df66c32861
planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff
changeset
|
204 --output-type [tab|csv] Output file type (tab|csv) |
26df66c32861
planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff
changeset
|
205 -n, --top-n-results INTEGER Output top N results sorted by distance in |
26df66c32861
planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff
changeset
|
206 ascending order (default=5) |
26df66c32861
planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff
changeset
|
207 -m, --min-kmer-threshold INTEGER |
26df66c32861
planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff
changeset
|
208 Mash sketch of reads: "Minimum copies of |
26df66c32861
planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff
changeset
|
209 each k-mer required to pass noise filter for |
26df66c32861
planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff
changeset
|
210 reads" (default=8) |
26df66c32861
planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff
changeset
|
211 -h, --help Show this message and exit. |
26df66c32861
planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff
changeset
|
212 |
26df66c32861
planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff
changeset
|
213 |
26df66c32861
planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff
changeset
|
214 Example |
26df66c32861
planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff
changeset
|
215 ~~~~~~~ |
26df66c32861
planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff
changeset
|
216 |
26df66c32861
planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff
changeset
|
217 With the FNA.GZ_ file for *Salmonella enterica* subsp. enterica serovar Enteritidis str. CHS44_:: |
26df66c32861
planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff
changeset
|
218 |
26df66c32861
planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff
changeset
|
219 |
26df66c32861
planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff
changeset
|
220 # download sequence file |
1
2c1cb37a3ffe
planemo upload for repository https://github.com/phac-nml/refseq_masher commit e83730c5df84a960af58ff09db7eb09d11df2398
nml
parents:
0
diff
changeset
|
221 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
|
222 |
26df66c32861
planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff
changeset
|
223 # find RefSeq matches |
26df66c32861
planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff
changeset
|
224 refseq_masher -vv matches GCF_000329025.1_ASM32902v1_genomic.fna.gz |
26df66c32861
planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff
changeset
|
225 |
26df66c32861
planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff
changeset
|
226 |
26df66c32861
planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff
changeset
|
227 **Log**:: |
26df66c32861
planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff
changeset
|
228 |
26df66c32861
planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff
changeset
|
229 |
26df66c32861
planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff
changeset
|
230 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
|
231 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
|
232 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
|
233 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
|
234 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
|
235 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
|
236 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
|
237 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
|
238 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
|
239 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
|
240 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
|
241 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
|
242 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
|
243 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
|
244 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
|
245 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
|
246 |
26df66c32861
planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff
changeset
|
247 |
26df66c32861
planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff
changeset
|
248 **Output** |
26df66c32861
planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff
changeset
|
249 |
26df66c32861
planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff
changeset
|
250 +---------------------------------------+--------------------------------------------------------------------+----------+--------+----------+-------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------+---------------------+------------------+--------------------+------------------+---------------------+-------------------+-------------------------+------------+-------------+---------+-------------+--------------+--------+---------------------+------------------------------------------------------------------------------------------------------------------------------------------+ |
26df66c32861
planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff
changeset
|
251 | 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
|
252 +=======================================+====================================================================+==========+========+==========+=============================================================================================================================================================+=====================================+=====================+==================+====================+==================+=====================+===================+=========================+============+=============+=========+=============+==============+========+=====================+==========================================================================================================================================+ |
26df66c32861
planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff
changeset
|
253 | 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
|
254 +---------------------------------------+--------------------------------------------------------------------+----------+--------+----------+-------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------+---------------------+------------------+--------------------+------------------+---------------------+-------------------+-------------------------+------------+-------------+---------+-------------+--------------+--------+---------------------+------------------------------------------------------------------------------------------------------------------------------------------+ |
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 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
|
258 |
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 Legal |
26df66c32861
planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff
changeset
|
262 ----- |
26df66c32861
planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff
changeset
|
263 |
26df66c32861
planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff
changeset
|
264 Copyright Government of Canada 2017 |
26df66c32861
planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff
changeset
|
265 |
26df66c32861
planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff
changeset
|
266 Written by: National Microbiology Laboratory, Public Health Agency of Canada |
26df66c32861
planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff
changeset
|
267 |
26df66c32861
planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff
changeset
|
268 Licensed under the Apache License, Version 2.0 (the "License"); you may not use |
26df66c32861
planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff
changeset
|
269 this work except in compliance with the License. You may obtain a copy of the |
26df66c32861
planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff
changeset
|
270 License at: |
26df66c32861
planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff
changeset
|
271 |
1
2c1cb37a3ffe
planemo upload for repository https://github.com/phac-nml/refseq_masher commit e83730c5df84a960af58ff09db7eb09d11df2398
nml
parents:
0
diff
changeset
|
272 www.apache.org/licenses/LICENSE-2.0 |
0
26df66c32861
planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff
changeset
|
273 |
26df66c32861
planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff
changeset
|
274 Unless required by applicable law or agreed to in writing, software distributed |
26df66c32861
planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff
changeset
|
275 under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR |
26df66c32861
planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff
changeset
|
276 CONDITIONS OF ANY KIND, either express or implied. See the License for the |
26df66c32861
planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff
changeset
|
277 specific language governing permissions and limitations under the License. |
26df66c32861
planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff
changeset
|
278 |
26df66c32861
planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff
changeset
|
279 Contact |
26df66c32861
planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff
changeset
|
280 ------- |
26df66c32861
planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff
changeset
|
281 |
26df66c32861
planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff
changeset
|
282 **Gary van Domselaar**: gary.vandomselaar@phac-aspc.gc.ca |
26df66c32861
planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff
changeset
|
283 |
1
2c1cb37a3ffe
planemo upload for repository https://github.com/phac-nml/refseq_masher commit e83730c5df84a960af58ff09db7eb09d11df2398
nml
parents:
0
diff
changeset
|
284 .. _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
|
285 .. _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
|
286 .. _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
|
287 |
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 </help> |
26df66c32861
planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff
changeset
|
291 <citations> |
26df66c32861
planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff
changeset
|
292 <!-- Citation for Mash paper --> |
26df66c32861
planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff
changeset
|
293 <citation type="doi">10.1186/s13059-016-0997-x</citation> |
26df66c32861
planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff
changeset
|
294 </citations> |
26df66c32861
planemo upload commit 80c22275be05e29208e991019309dfffa9704f39
nml
parents:
diff
changeset
|
295 </tool> |