annotate taxonomy_filter_refseq.xml @ 0:28e95c6a944d draft

planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
author iuc
date Wed, 16 Jan 2019 08:30:47 -0500
parents
children d9662c76b6d5
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
1 <tool id="taxonomy_filter_refseq" name="Filter RefSeq by taxonomy" version="@TOOL_VERSION@+galaxy0">
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
2 <description>Only retain sequences that are descendants of a given taxonomic node.</description>
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
3 <macros>
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
4 <token name="@TOOL_VERSION@">0.1.4</token>
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
5 </macros>
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
6 <edam_topics>
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
7 <edam_topic>topic_0091</edam_topic>
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
8 </edam_topics>
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
9 <edam_operations>
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
10 <edam_operation>operation_3460</edam_operation>
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
11 </edam_operations>
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
12 <requirements>
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
13 <requirement type="package" version="@TOOL_VERSION@">rust-ncbitaxonomy</requirement>
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
14 </requirements>
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
15 <!-- current using redirect to output rather than output to file due to bug in pre-0.1.4 rust-ncbitaxonomy -->
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
16 <command detect_errors="aggressive"><![CDATA[
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
17 #if str($refseq.refseq_source) == 'cached':
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
18 #set $refseq_input = str( $refseq.cached_refseq.fields.path )
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
19 #else:
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
20 ln -s '$refseq.history_refseq' refseq.fasta &&
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
21 #set $refseq_input = "refseq.fasta"
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
22 #end if
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
23 #if str($taxonomy.taxonomy_source) == 'cached':
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
24 #set $taxonomy_dir = $taxonomy.taxonomy_table.fields.path
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
25 #else:
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
26 mkdir taxonomy && ln -s '$taxonomy.nodes' taxonomy/nodes.dmp && ln -s '$taxonomy.names' taxonomy/names.dmp &&
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
27 #set $taxonomy_dir = 'taxonomy'
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
28 #end if
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
29 taxonomy_filter_refseq '$refseq_input' '$taxonomy_dir' '$ancestor_name' >'$refseq_output_fasta'
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
30 ]]></command>
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
31 <inputs>
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
32 <conditional name="taxonomy">
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
33 <param name="taxonomy_source" type="select" label="Choose source of NCBI Taxonomy">
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
34 <option value="cached" selected="true">Use built-in NCBI Taxonomy database</option>
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
35 <option value="history">Datasets from history</option>
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
36 </param>
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
37 <when value="cached">
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
38 <param type="select" name="taxonomy_table" label="NCBI Taxonomy database">
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
39 <options from_data_table="ncbi_taxonomy">
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
40 <filter type="sort_by" column="name" />
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
41 <validator type="no_options" message="No NCBI Taxonomy downloads are available" />
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
42 </options>
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
43 <validator type="no_options" message="No NCBI Taxonomy database download is available" />
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
44 </param>
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
45 </when>
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
46 <when value="history">
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
47 <param name="nodes" type="data" format="txt" label="NCBI Taxonomy nodes.dmp file" />
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
48 <param name="names" type="data" format="txt" label="NCBI Taxonomy names.dmp file" />
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
49 </when>
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
50 </conditional>
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
51 <conditional name="refseq">
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
52 <param name="refseq_source" type="select" label="Choose source of RefSeq sequences">
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
53 <option value="cached" selected="true">Use a built-in RefSeq FASTA file</option>
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
54 <option value="history">History</option>
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
55 </param>
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
56 <when value="cached">
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
57 <param type="select" name="cached_refseq" label="Select RefSeq FASTA file">
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
58 <options from_data_table="all_fasta">
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
59 <filter type="sort_by" column="name" />
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
60 <validator type="no_options" message="No FASTA data is available" />
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
61 </options>
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
62 <validator type="no_options" message="No FASTA data is available" />
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
63 </param>
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
64 </when>
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
65 <when value="history">
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
66 <param type="data" name="history_refseq" format="fasta" label="RefSeq FASTA file" />
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
67 </when>
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
68 </conditional>
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
69 <param name="ancestor_name" type="text" label="Ancestor taxon (scientific) name" />
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
70 </inputs>
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
71 <outputs>
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
72 <data name="refseq_output_fasta" format="fasta" label="${tool.name} on ${on_string}" />
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
73 </outputs>
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
74 <tests>
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
75 <test>
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
76 <param name="taxonomy_source" value="history" />
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
77 <param name="refseq_source" value="history" />
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
78 <param name="nodes" ftype="txt" value="sample_tree_nodes.dmp" />
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
79 <param name="names" ftype="txt" value="sample_tree_names.dmp" />
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
80 <param name="history_refseq" ftype="fasta" value="sample_refseq.fasta" />
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
81 <param name="ancestor_name" value="unclassified bacterial viruses" />
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
82 <output name="refseq_output_fasta" value="output1.fasta" />
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
83 </test>
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
84 <test>
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
85 <param name="taxonomy_source" value="cached" />
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
86 <param name="taxonomy_table" value="2019-01-01" />
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
87 <param name="refseq_source" value="cached" />
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
88 <param name="cached_refseq" value="refseq_sample" />
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
89 <param name="nodes" ftype="txt" value="sample_tree_nodes.dmp" />
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
90 <param name="names" ftype="txt" value="sample_tree_names.dmp" />
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
91 <param name="history_refseq" ftype="fasta" value="sample_refseq.fasta" />
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
92 <param name="ancestor_name" value="unclassified bacterial viruses" />
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
93 <output name="refseq_output_fasta" value="output1.fasta" />
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
94 </test>
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
95 </tests>
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
96 <help><![CDATA[
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
97 This tool allows NCBI RefSeq sequences to be filtered so that only those whose species name are
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
98 descendants of a given taxon in the NCBI taxonomy are retained. For example, from the NCBI RefSeq
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
99 "other vertebrate" file only ray finned fishes can be retained by filtering for "Actinopterygii".
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
100
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
101 The NCBI RefSeq FASTA files can either be provided by the Galaxy administrator or from the user
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
102 history. The NCBI taxonomy should be provided by the Galaxy administrator but if that is not
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
103 possible the nodes.dmp and names.dmp files from the NCBI taxonomy can be provided in the history.
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
104 ]]></help>
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
105 <citations>
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
106 <citation type="bibtex">
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
107 @misc{vanHeusden2019,
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
108 author = {van Heusden, Peter},
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
109 year = {2019},
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
110 title = ncbitaxonomy Rust crate},
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
111 publisher = {crates.io},
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
112 journal = {Rust Package Registry},
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
113 url = {https://crates.io/crates/ncbitaxonomy},
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
114 }
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
115 </citation>
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
116 </citations>
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
117 </tool>