annotate taxonomy_filter_refseq.xml @ 1:d9662c76b6d5 draft default tip

"planemo upload for repository https://github.com/galaxyproject/tools-iuc commit e68b434ae52d29f038bac26874ceb51d4911b4fb"
author iuc
date Wed, 29 Apr 2020 16:50:22 -0400
parents 28e95c6a944d
children
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>
1
d9662c76b6d5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc commit e68b434ae52d29f038bac26874ceb51d4911b4fb"
iuc
parents: 0
diff changeset
4 <token name="@TOOL_VERSION@">0.3.0</token>
0
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
1
d9662c76b6d5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc commit e68b434ae52d29f038bac26874ceb51d4911b4fb"
iuc
parents: 0
diff changeset
29 taxonomy_filter_refseq $no_curated $no_predicted '$refseq_input' '$taxonomy_dir' '$ancestor_name' >'$refseq_output_fasta'
0
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" />
1
d9662c76b6d5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc commit e68b434ae52d29f038bac26874ceb51d4911b4fb"
iuc
parents: 0
diff changeset
70 <param argument="--no_curated" type="boolean" truevalue="--no_curated" falsevalue="" checked="false"
d9662c76b6d5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc commit e68b434ae52d29f038bac26874ceb51d4911b4fb"
iuc
parents: 0
diff changeset
71 label="Exclude curated sequences from dataset"
d9662c76b6d5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc commit e68b434ae52d29f038bac26874ceb51d4911b4fb"
iuc
parents: 0
diff changeset
72 help="Curated sequences are identified by their accession number prefixes and excluded if this option is checked"
d9662c76b6d5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc commit e68b434ae52d29f038bac26874ceb51d4911b4fb"
iuc
parents: 0
diff changeset
73 />
d9662c76b6d5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc commit e68b434ae52d29f038bac26874ceb51d4911b4fb"
iuc
parents: 0
diff changeset
74 <param argument="--no_predicted" type="boolean" truevalue="--no_predicted" falsevalue="" checked="false"
d9662c76b6d5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc commit e68b434ae52d29f038bac26874ceb51d4911b4fb"
iuc
parents: 0
diff changeset
75 label="Exclude predicted sequences from the dataset"
d9662c76b6d5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc commit e68b434ae52d29f038bac26874ceb51d4911b4fb"
iuc
parents: 0
diff changeset
76 help="Computationally predicted (but not curated) sequences are identifed by their accession number prefix and excluded if this option is checked"
d9662c76b6d5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc commit e68b434ae52d29f038bac26874ceb51d4911b4fb"
iuc
parents: 0
diff changeset
77 />
0
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
78 </inputs>
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
79 <outputs>
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
80 <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
81 </outputs>
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
82 <tests>
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 <param name="taxonomy_source" value="history" />
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
85 <param name="refseq_source" value="history" />
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
86 <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
87 <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
88 <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
89 <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
90 <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
91 </test>
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
92 <test>
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
93 <param name="taxonomy_source" value="cached" />
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
94 <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
95 <param name="refseq_source" value="cached" />
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
96 <param name="cached_refseq" value="refseq_sample" />
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
97 <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
98 <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
99 <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
100 <param name="ancestor_name" value="unclassified bacterial viruses" />
1
d9662c76b6d5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc commit e68b434ae52d29f038bac26874ceb51d4911b4fb"
iuc
parents: 0
diff changeset
101 <param name="no_predicted" value="false" />
d9662c76b6d5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc commit e68b434ae52d29f038bac26874ceb51d4911b4fb"
iuc
parents: 0
diff changeset
102 <param name="no_curated" value="false" />
0
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
103 <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
104 </test>
1
d9662c76b6d5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc commit e68b434ae52d29f038bac26874ceb51d4911b4fb"
iuc
parents: 0
diff changeset
105 <test>
d9662c76b6d5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc commit e68b434ae52d29f038bac26874ceb51d4911b4fb"
iuc
parents: 0
diff changeset
106 <param name="taxonomy_source" value="history" />
d9662c76b6d5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc commit e68b434ae52d29f038bac26874ceb51d4911b4fb"
iuc
parents: 0
diff changeset
107 <param name="refseq_source" value="history" />
d9662c76b6d5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc commit e68b434ae52d29f038bac26874ceb51d4911b4fb"
iuc
parents: 0
diff changeset
108 <param name="nodes" ftype="txt" value="sample_tree_nodes.dmp" />
d9662c76b6d5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc commit e68b434ae52d29f038bac26874ceb51d4911b4fb"
iuc
parents: 0
diff changeset
109 <param name="names" ftype="txt" value="sample_tree_names.dmp" />
d9662c76b6d5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc commit e68b434ae52d29f038bac26874ceb51d4911b4fb"
iuc
parents: 0
diff changeset
110 <param name="history_refseq" ftype="fasta" value="sample_refseq.fasta" />
d9662c76b6d5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc commit e68b434ae52d29f038bac26874ceb51d4911b4fb"
iuc
parents: 0
diff changeset
111 <param name="ancestor_name" value="unclassified bacterial viruses" />
d9662c76b6d5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc commit e68b434ae52d29f038bac26874ceb51d4911b4fb"
iuc
parents: 0
diff changeset
112 <param name="no_predicted" value="true" />
d9662c76b6d5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc commit e68b434ae52d29f038bac26874ceb51d4911b4fb"
iuc
parents: 0
diff changeset
113 <param name="no_curated" value="false" />
d9662c76b6d5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc commit e68b434ae52d29f038bac26874ceb51d4911b4fb"
iuc
parents: 0
diff changeset
114 <output name="refseq_output_fasta" value="output2.fasta" />
d9662c76b6d5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc commit e68b434ae52d29f038bac26874ceb51d4911b4fb"
iuc
parents: 0
diff changeset
115 </test>
d9662c76b6d5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc commit e68b434ae52d29f038bac26874ceb51d4911b4fb"
iuc
parents: 0
diff changeset
116 <test>
d9662c76b6d5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc commit e68b434ae52d29f038bac26874ceb51d4911b4fb"
iuc
parents: 0
diff changeset
117 <param name="taxonomy_source" value="history" />
d9662c76b6d5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc commit e68b434ae52d29f038bac26874ceb51d4911b4fb"
iuc
parents: 0
diff changeset
118 <param name="refseq_source" value="history" />
d9662c76b6d5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc commit e68b434ae52d29f038bac26874ceb51d4911b4fb"
iuc
parents: 0
diff changeset
119 <param name="nodes" ftype="txt" value="sample_tree_nodes.dmp" />
d9662c76b6d5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc commit e68b434ae52d29f038bac26874ceb51d4911b4fb"
iuc
parents: 0
diff changeset
120 <param name="names" ftype="txt" value="sample_tree_names.dmp" />
d9662c76b6d5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc commit e68b434ae52d29f038bac26874ceb51d4911b4fb"
iuc
parents: 0
diff changeset
121 <param name="history_refseq" ftype="fasta" value="sample_refseq.fasta" />
d9662c76b6d5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc commit e68b434ae52d29f038bac26874ceb51d4911b4fb"
iuc
parents: 0
diff changeset
122 <param name="ancestor_name" value="unclassified bacterial viruses" />
d9662c76b6d5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc commit e68b434ae52d29f038bac26874ceb51d4911b4fb"
iuc
parents: 0
diff changeset
123 <param name="no_predicted" value="false" />
d9662c76b6d5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc commit e68b434ae52d29f038bac26874ceb51d4911b4fb"
iuc
parents: 0
diff changeset
124 <param name="no_curated" value="true" />
d9662c76b6d5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc commit e68b434ae52d29f038bac26874ceb51d4911b4fb"
iuc
parents: 0
diff changeset
125 <output name="refseq_output_fasta" value="output3.fasta" />
d9662c76b6d5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc commit e68b434ae52d29f038bac26874ceb51d4911b4fb"
iuc
parents: 0
diff changeset
126 </test>
0
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
127 </tests>
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
128 <help><![CDATA[
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
129 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
130 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
131 "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
132
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
133 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
134 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
135 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
136 ]]></help>
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
137 <citations>
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
138 <citation type="bibtex">
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
139 @misc{vanHeusden2019,
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
140 author = {van Heusden, Peter},
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
141 year = {2019},
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
142 title = ncbitaxonomy Rust crate},
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
143 publisher = {crates.io},
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
144 journal = {Rust Package Registry},
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
145 url = {https://crates.io/crates/ncbitaxonomy},
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
146 }
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
147 </citation>
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
148 </citations>
28e95c6a944d planemo upload for repository https://github.com/galaxyproject/tools-iuc commit 665d364fb51576608b0eb66a4f89d92159925ccc
iuc
parents:
diff changeset
149 </tool>