Mercurial > repos > iuc > mirmachine
annotate mirmachine.xml @ 3:b0d80d456120 draft
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine commit 4b14ff1a0b0a76b8abc41c094e614696c23f5655
| author | iuc |
|---|---|
| date | Tue, 17 Jun 2025 08:34:47 +0000 |
| parents | ef6ed729b69a |
| children | c73e17fc5a77 |
| rev | line source |
|---|---|
|
0
f2e87c81497d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine commit 236a9bc5da1e5f73ba2c27b0664ac28ee14bb6da
iuc
parents:
diff
changeset
|
1 <tool id="mirmachine" name="MirMachine" version="@TOOL_VERSION@+galaxy@SUFFIX_VERSION@" profile="22.05"> |
|
f2e87c81497d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine commit 236a9bc5da1e5f73ba2c27b0664ac28ee14bb6da
iuc
parents:
diff
changeset
|
2 <description>A tool to detect miRNA homologs in genome sequences</description> |
|
f2e87c81497d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine commit 236a9bc5da1e5f73ba2c27b0664ac28ee14bb6da
iuc
parents:
diff
changeset
|
3 <macros> |
|
f2e87c81497d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine commit 236a9bc5da1e5f73ba2c27b0664ac28ee14bb6da
iuc
parents:
diff
changeset
|
4 <import>macros.xml</import> |
|
f2e87c81497d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine commit 236a9bc5da1e5f73ba2c27b0664ac28ee14bb6da
iuc
parents:
diff
changeset
|
5 </macros> |
|
f2e87c81497d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine commit 236a9bc5da1e5f73ba2c27b0664ac28ee14bb6da
iuc
parents:
diff
changeset
|
6 <expand macro="requirements"/> |
|
f2e87c81497d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine commit 236a9bc5da1e5f73ba2c27b0664ac28ee14bb6da
iuc
parents:
diff
changeset
|
7 <command detect_errors="exit_code"><![CDATA[ |
|
f2e87c81497d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine commit 236a9bc5da1e5f73ba2c27b0664ac28ee14bb6da
iuc
parents:
diff
changeset
|
8 ln -sf '$genome' ./genome.fasta && |
|
f2e87c81497d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine commit 236a9bc5da1e5f73ba2c27b0664ac28ee14bb6da
iuc
parents:
diff
changeset
|
9 MirMachine.py |
|
f2e87c81497d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine commit 236a9bc5da1e5f73ba2c27b0664ac28ee14bb6da
iuc
parents:
diff
changeset
|
10 -n '$input_node' |
|
f2e87c81497d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine commit 236a9bc5da1e5f73ba2c27b0664ac28ee14bb6da
iuc
parents:
diff
changeset
|
11 -s '$input_species' |
|
1
85010d0eaa6c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine commit 305061c25b6fcf54d960f17c2cad15c30fb2e26a
iuc
parents:
0
diff
changeset
|
12 -m '$model' |
|
85010d0eaa6c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine commit 305061c25b6fcf54d960f17c2cad15c30fb2e26a
iuc
parents:
0
diff
changeset
|
13 $a |
|
85010d0eaa6c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine commit 305061c25b6fcf54d960f17c2cad15c30fb2e26a
iuc
parents:
0
diff
changeset
|
14 $o |
|
0
f2e87c81497d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine commit 236a9bc5da1e5f73ba2c27b0664ac28ee14bb6da
iuc
parents:
diff
changeset
|
15 --genome ./genome.fasta |
|
f2e87c81497d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine commit 236a9bc5da1e5f73ba2c27b0664ac28ee14bb6da
iuc
parents:
diff
changeset
|
16 -c \${GALAXY_SLOTS:-8} |
|
f2e87c81497d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine commit 236a9bc5da1e5f73ba2c27b0664ac28ee14bb6da
iuc
parents:
diff
changeset
|
17 && |
|
f2e87c81497d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine commit 236a9bc5da1e5f73ba2c27b0664ac28ee14bb6da
iuc
parents:
diff
changeset
|
18 mv results/predictions/filtered_gff/*.PRE.gff species_filtered.PRE.gff && |
|
f2e87c81497d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine commit 236a9bc5da1e5f73ba2c27b0664ac28ee14bb6da
iuc
parents:
diff
changeset
|
19 mv results/predictions/gff/*.PRE.gff species.PRE.gff && |
|
f2e87c81497d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine commit 236a9bc5da1e5f73ba2c27b0664ac28ee14bb6da
iuc
parents:
diff
changeset
|
20 mv results/predictions/fasta/*.PRE.fasta species.PRE.fasta |
|
f2e87c81497d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine commit 236a9bc5da1e5f73ba2c27b0664ac28ee14bb6da
iuc
parents:
diff
changeset
|
21 ]]></command> |
|
f2e87c81497d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine commit 236a9bc5da1e5f73ba2c27b0664ac28ee14bb6da
iuc
parents:
diff
changeset
|
22 <inputs> |
|
f2e87c81497d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine commit 236a9bc5da1e5f73ba2c27b0664ac28ee14bb6da
iuc
parents:
diff
changeset
|
23 <param type="data" name="genome" format="fasta" label="Genome fasta file"/> |
|
f2e87c81497d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine commit 236a9bc5da1e5f73ba2c27b0664ac28ee14bb6da
iuc
parents:
diff
changeset
|
24 <param name="input_node" type="select" label="Node name" help="e.g. Caenorhabditis"> |
|
f2e87c81497d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine commit 236a9bc5da1e5f73ba2c27b0664ac28ee14bb6da
iuc
parents:
diff
changeset
|
25 <expand macro="node_options"/> |
|
f2e87c81497d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine commit 236a9bc5da1e5f73ba2c27b0664ac28ee14bb6da
iuc
parents:
diff
changeset
|
26 </param> |
|
f2e87c81497d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine commit 236a9bc5da1e5f73ba2c27b0664ac28ee14bb6da
iuc
parents:
diff
changeset
|
27 <param type="text" name="input_species" label="Scientific species name" help="Separated by underscore e.g. Caenorhabditis_elegans"> |
|
f2e87c81497d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine commit 236a9bc5da1e5f73ba2c27b0664ac28ee14bb6da
iuc
parents:
diff
changeset
|
28 <sanitizer invalid_char=""> |
|
f2e87c81497d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine commit 236a9bc5da1e5f73ba2c27b0664ac28ee14bb6da
iuc
parents:
diff
changeset
|
29 <valid initial="string.letters"> |
|
f2e87c81497d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine commit 236a9bc5da1e5f73ba2c27b0664ac28ee14bb6da
iuc
parents:
diff
changeset
|
30 <add value="_"/> |
|
f2e87c81497d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine commit 236a9bc5da1e5f73ba2c27b0664ac28ee14bb6da
iuc
parents:
diff
changeset
|
31 </valid> |
|
f2e87c81497d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine commit 236a9bc5da1e5f73ba2c27b0664ac28ee14bb6da
iuc
parents:
diff
changeset
|
32 </sanitizer> |
|
f2e87c81497d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine commit 236a9bc5da1e5f73ba2c27b0664ac28ee14bb6da
iuc
parents:
diff
changeset
|
33 <validator type="regex">[a-zA-Z_]+</validator> |
|
f2e87c81497d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine commit 236a9bc5da1e5f73ba2c27b0664ac28ee14bb6da
iuc
parents:
diff
changeset
|
34 </param> |
|
1
85010d0eaa6c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine commit 305061c25b6fcf54d960f17c2cad15c30fb2e26a
iuc
parents:
0
diff
changeset
|
35 <param type="select" name="model" label="Model" help="Model type: deutero, proto, combined"> |
|
85010d0eaa6c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine commit 305061c25b6fcf54d960f17c2cad15c30fb2e26a
iuc
parents:
0
diff
changeset
|
36 <expand macro="model_options"/> |
|
85010d0eaa6c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine commit 305061c25b6fcf54d960f17c2cad15c30fb2e26a
iuc
parents:
0
diff
changeset
|
37 </param> |
|
85010d0eaa6c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine commit 305061c25b6fcf54d960f17c2cad15c30fb2e26a
iuc
parents:
0
diff
changeset
|
38 <param type="boolean" optional="true" truevalue="-a" falsevalue="" argument="-a" label="Add all nodes" help="Move on the tree both ways"/> |
|
85010d0eaa6c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine commit 305061c25b6fcf54d960f17c2cad15c30fb2e26a
iuc
parents:
0
diff
changeset
|
39 <param type="boolean" optional="true" truevalue="-o" falsevalue="" argument="-o" label="Single node only" help="Run only on the given node for miRNA families"/> |
|
0
f2e87c81497d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine commit 236a9bc5da1e5f73ba2c27b0664ac28ee14bb6da
iuc
parents:
diff
changeset
|
40 </inputs> |
|
f2e87c81497d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine commit 236a9bc5da1e5f73ba2c27b0664ac28ee14bb6da
iuc
parents:
diff
changeset
|
41 <outputs> |
|
f2e87c81497d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine commit 236a9bc5da1e5f73ba2c27b0664ac28ee14bb6da
iuc
parents:
diff
changeset
|
42 <data name="gff_file" format="gff" from_work_dir="species.PRE.gff" label="${tool.name} on ${on_string}: GFF file"/> |
|
f2e87c81497d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine commit 236a9bc5da1e5f73ba2c27b0664ac28ee14bb6da
iuc
parents:
diff
changeset
|
43 <data name="filtered_gff_file" format="gff" from_work_dir="species_filtered.PRE.gff" label="${tool.name} on ${on_string}: filtered GFF file"/> |
|
f2e87c81497d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine commit 236a9bc5da1e5f73ba2c27b0664ac28ee14bb6da
iuc
parents:
diff
changeset
|
44 <data name="fasta_file" format="fasta" from_work_dir="species.PRE.fasta" label="${tool.name} on ${on_string}: fasta sequence of annotation miRNAs"/> |
|
f2e87c81497d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine commit 236a9bc5da1e5f73ba2c27b0664ac28ee14bb6da
iuc
parents:
diff
changeset
|
45 </outputs> |
|
f2e87c81497d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine commit 236a9bc5da1e5f73ba2c27b0664ac28ee14bb6da
iuc
parents:
diff
changeset
|
46 <tests> |
|
f2e87c81497d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine commit 236a9bc5da1e5f73ba2c27b0664ac28ee14bb6da
iuc
parents:
diff
changeset
|
47 <test expect_num_outputs="3"> |
|
f2e87c81497d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine commit 236a9bc5da1e5f73ba2c27b0664ac28ee14bb6da
iuc
parents:
diff
changeset
|
48 <param name="genome" value="ref.fa"/> |
|
f2e87c81497d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine commit 236a9bc5da1e5f73ba2c27b0664ac28ee14bb6da
iuc
parents:
diff
changeset
|
49 <param name="input_node" value="Caenorhabditis"/> |
|
f2e87c81497d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine commit 236a9bc5da1e5f73ba2c27b0664ac28ee14bb6da
iuc
parents:
diff
changeset
|
50 <param name="input_species" value="Caenorhabditis_elegans"/> |
|
f2e87c81497d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine commit 236a9bc5da1e5f73ba2c27b0664ac28ee14bb6da
iuc
parents:
diff
changeset
|
51 <output name="gff_file"> |
|
f2e87c81497d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine commit 236a9bc5da1e5f73ba2c27b0664ac28ee14bb6da
iuc
parents:
diff
changeset
|
52 <assert_contents> |
|
f2e87c81497d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine commit 236a9bc5da1e5f73ba2c27b0664ac28ee14bb6da
iuc
parents:
diff
changeset
|
53 <has_n_lines n="24" delta="0"/> |
|
f2e87c81497d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine commit 236a9bc5da1e5f73ba2c27b0664ac28ee14bb6da
iuc
parents:
diff
changeset
|
54 </assert_contents> |
|
f2e87c81497d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine commit 236a9bc5da1e5f73ba2c27b0664ac28ee14bb6da
iuc
parents:
diff
changeset
|
55 </output> |
|
f2e87c81497d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine commit 236a9bc5da1e5f73ba2c27b0664ac28ee14bb6da
iuc
parents:
diff
changeset
|
56 <output name="filtered_gff_file"> |
|
f2e87c81497d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine commit 236a9bc5da1e5f73ba2c27b0664ac28ee14bb6da
iuc
parents:
diff
changeset
|
57 <assert_contents> |
|
f2e87c81497d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine commit 236a9bc5da1e5f73ba2c27b0664ac28ee14bb6da
iuc
parents:
diff
changeset
|
58 <has_n_lines n="15" delta="0"/> |
|
f2e87c81497d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine commit 236a9bc5da1e5f73ba2c27b0664ac28ee14bb6da
iuc
parents:
diff
changeset
|
59 </assert_contents> |
|
f2e87c81497d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine commit 236a9bc5da1e5f73ba2c27b0664ac28ee14bb6da
iuc
parents:
diff
changeset
|
60 </output> |
|
f2e87c81497d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine commit 236a9bc5da1e5f73ba2c27b0664ac28ee14bb6da
iuc
parents:
diff
changeset
|
61 <output name="fasta_file"> |
|
f2e87c81497d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine commit 236a9bc5da1e5f73ba2c27b0664ac28ee14bb6da
iuc
parents:
diff
changeset
|
62 <assert_contents> |
|
f2e87c81497d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine commit 236a9bc5da1e5f73ba2c27b0664ac28ee14bb6da
iuc
parents:
diff
changeset
|
63 <has_n_lines n="24" delta="0"/> |
|
f2e87c81497d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine commit 236a9bc5da1e5f73ba2c27b0664ac28ee14bb6da
iuc
parents:
diff
changeset
|
64 </assert_contents> |
|
f2e87c81497d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine commit 236a9bc5da1e5f73ba2c27b0664ac28ee14bb6da
iuc
parents:
diff
changeset
|
65 </output> |
|
f2e87c81497d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine commit 236a9bc5da1e5f73ba2c27b0664ac28ee14bb6da
iuc
parents:
diff
changeset
|
66 </test> |
|
1
85010d0eaa6c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine commit 305061c25b6fcf54d960f17c2cad15c30fb2e26a
iuc
parents:
0
diff
changeset
|
67 <test expect_num_outputs="3"> |
|
85010d0eaa6c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine commit 305061c25b6fcf54d960f17c2cad15c30fb2e26a
iuc
parents:
0
diff
changeset
|
68 <param name="genome" value="ref.fa"/> |
|
85010d0eaa6c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine commit 305061c25b6fcf54d960f17c2cad15c30fb2e26a
iuc
parents:
0
diff
changeset
|
69 <param name="input_node" value="Caenorhabditis"/> |
|
85010d0eaa6c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine commit 305061c25b6fcf54d960f17c2cad15c30fb2e26a
iuc
parents:
0
diff
changeset
|
70 <param name="input_species" value="Caenorhabditis_elegans"/> |
|
85010d0eaa6c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine commit 305061c25b6fcf54d960f17c2cad15c30fb2e26a
iuc
parents:
0
diff
changeset
|
71 <param name="a" value="true"/> |
|
85010d0eaa6c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine commit 305061c25b6fcf54d960f17c2cad15c30fb2e26a
iuc
parents:
0
diff
changeset
|
72 <output name="gff_file"> |
|
85010d0eaa6c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine commit 305061c25b6fcf54d960f17c2cad15c30fb2e26a
iuc
parents:
0
diff
changeset
|
73 <assert_contents> |
|
3
b0d80d456120
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine commit 4b14ff1a0b0a76b8abc41c094e614696c23f5655
iuc
parents:
2
diff
changeset
|
74 <has_n_lines n="30" delta="0"/> |
|
1
85010d0eaa6c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine commit 305061c25b6fcf54d960f17c2cad15c30fb2e26a
iuc
parents:
0
diff
changeset
|
75 </assert_contents> |
|
85010d0eaa6c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine commit 305061c25b6fcf54d960f17c2cad15c30fb2e26a
iuc
parents:
0
diff
changeset
|
76 </output> |
|
85010d0eaa6c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine commit 305061c25b6fcf54d960f17c2cad15c30fb2e26a
iuc
parents:
0
diff
changeset
|
77 <output name="filtered_gff_file"> |
|
85010d0eaa6c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine commit 305061c25b6fcf54d960f17c2cad15c30fb2e26a
iuc
parents:
0
diff
changeset
|
78 <assert_contents> |
|
85010d0eaa6c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine commit 305061c25b6fcf54d960f17c2cad15c30fb2e26a
iuc
parents:
0
diff
changeset
|
79 <has_n_lines n="15" delta="0"/> |
|
85010d0eaa6c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine commit 305061c25b6fcf54d960f17c2cad15c30fb2e26a
iuc
parents:
0
diff
changeset
|
80 </assert_contents> |
|
85010d0eaa6c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine commit 305061c25b6fcf54d960f17c2cad15c30fb2e26a
iuc
parents:
0
diff
changeset
|
81 </output> |
|
85010d0eaa6c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine commit 305061c25b6fcf54d960f17c2cad15c30fb2e26a
iuc
parents:
0
diff
changeset
|
82 <output name="fasta_file"> |
|
85010d0eaa6c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine commit 305061c25b6fcf54d960f17c2cad15c30fb2e26a
iuc
parents:
0
diff
changeset
|
83 <assert_contents> |
|
3
b0d80d456120
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine commit 4b14ff1a0b0a76b8abc41c094e614696c23f5655
iuc
parents:
2
diff
changeset
|
84 <has_n_lines n="36" delta="0"/> |
|
1
85010d0eaa6c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine commit 305061c25b6fcf54d960f17c2cad15c30fb2e26a
iuc
parents:
0
diff
changeset
|
85 </assert_contents> |
|
85010d0eaa6c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine commit 305061c25b6fcf54d960f17c2cad15c30fb2e26a
iuc
parents:
0
diff
changeset
|
86 </output> |
|
85010d0eaa6c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine commit 305061c25b6fcf54d960f17c2cad15c30fb2e26a
iuc
parents:
0
diff
changeset
|
87 </test> |
|
85010d0eaa6c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine commit 305061c25b6fcf54d960f17c2cad15c30fb2e26a
iuc
parents:
0
diff
changeset
|
88 <test expect_num_outputs="3"> |
|
85010d0eaa6c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine commit 305061c25b6fcf54d960f17c2cad15c30fb2e26a
iuc
parents:
0
diff
changeset
|
89 <param name="genome" value="ref.fa"/> |
|
85010d0eaa6c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine commit 305061c25b6fcf54d960f17c2cad15c30fb2e26a
iuc
parents:
0
diff
changeset
|
90 <param name="input_node" value="Caenorhabditis"/> |
|
85010d0eaa6c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine commit 305061c25b6fcf54d960f17c2cad15c30fb2e26a
iuc
parents:
0
diff
changeset
|
91 <param name="input_species" value="Caenorhabditis_elegans"/> |
|
85010d0eaa6c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine commit 305061c25b6fcf54d960f17c2cad15c30fb2e26a
iuc
parents:
0
diff
changeset
|
92 <param name="o" value="true"/> |
|
85010d0eaa6c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine commit 305061c25b6fcf54d960f17c2cad15c30fb2e26a
iuc
parents:
0
diff
changeset
|
93 <output name="gff_file"> |
|
85010d0eaa6c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine commit 305061c25b6fcf54d960f17c2cad15c30fb2e26a
iuc
parents:
0
diff
changeset
|
94 <assert_contents> |
|
2
ef6ed729b69a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine commit ff0a9b6e75c9e73b3011fa9f60a3fd4ff291c017
iuc
parents:
1
diff
changeset
|
95 <has_n_lines n="20" delta="0"/> |
|
1
85010d0eaa6c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine commit 305061c25b6fcf54d960f17c2cad15c30fb2e26a
iuc
parents:
0
diff
changeset
|
96 </assert_contents> |
|
85010d0eaa6c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine commit 305061c25b6fcf54d960f17c2cad15c30fb2e26a
iuc
parents:
0
diff
changeset
|
97 </output> |
|
85010d0eaa6c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine commit 305061c25b6fcf54d960f17c2cad15c30fb2e26a
iuc
parents:
0
diff
changeset
|
98 <output name="filtered_gff_file"> |
|
85010d0eaa6c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine commit 305061c25b6fcf54d960f17c2cad15c30fb2e26a
iuc
parents:
0
diff
changeset
|
99 <assert_contents> |
|
85010d0eaa6c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine commit 305061c25b6fcf54d960f17c2cad15c30fb2e26a
iuc
parents:
0
diff
changeset
|
100 <has_n_lines n="12" delta="0"/> |
|
85010d0eaa6c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine commit 305061c25b6fcf54d960f17c2cad15c30fb2e26a
iuc
parents:
0
diff
changeset
|
101 </assert_contents> |
|
85010d0eaa6c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine commit 305061c25b6fcf54d960f17c2cad15c30fb2e26a
iuc
parents:
0
diff
changeset
|
102 </output> |
|
85010d0eaa6c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine commit 305061c25b6fcf54d960f17c2cad15c30fb2e26a
iuc
parents:
0
diff
changeset
|
103 <output name="fasta_file"> |
|
85010d0eaa6c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine commit 305061c25b6fcf54d960f17c2cad15c30fb2e26a
iuc
parents:
0
diff
changeset
|
104 <assert_contents> |
|
2
ef6ed729b69a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine commit ff0a9b6e75c9e73b3011fa9f60a3fd4ff291c017
iuc
parents:
1
diff
changeset
|
105 <has_n_lines n="16" delta="0"/> |
|
1
85010d0eaa6c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine commit 305061c25b6fcf54d960f17c2cad15c30fb2e26a
iuc
parents:
0
diff
changeset
|
106 </assert_contents> |
|
85010d0eaa6c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine commit 305061c25b6fcf54d960f17c2cad15c30fb2e26a
iuc
parents:
0
diff
changeset
|
107 </output> |
|
85010d0eaa6c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine commit 305061c25b6fcf54d960f17c2cad15c30fb2e26a
iuc
parents:
0
diff
changeset
|
108 </test> |
|
0
f2e87c81497d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine commit 236a9bc5da1e5f73ba2c27b0664ac28ee14bb6da
iuc
parents:
diff
changeset
|
109 </tests> |
|
f2e87c81497d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine commit 236a9bc5da1e5f73ba2c27b0664ac28ee14bb6da
iuc
parents:
diff
changeset
|
110 <help><![CDATA[ |
|
f2e87c81497d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine commit 236a9bc5da1e5f73ba2c27b0664ac28ee14bb6da
iuc
parents:
diff
changeset
|
111 |
|
f2e87c81497d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine commit 236a9bc5da1e5f73ba2c27b0664ac28ee14bb6da
iuc
parents:
diff
changeset
|
112 Accurate microRNA annotation of animal genomes using trained covariance models of curated microRNA complements. MirMachine facilitates automated genome annotation pipelines and deeper studies into the evolution of genome regulation, even in extinct organisms. |
|
f2e87c81497d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine commit 236a9bc5da1e5f73ba2c27b0664ac28ee14bb6da
iuc
parents:
diff
changeset
|
113 |
|
1
85010d0eaa6c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine commit 305061c25b6fcf54d960f17c2cad15c30fb2e26a
iuc
parents:
0
diff
changeset
|
114 The MirMachine main executable will generate GFF annotations (filtered and unfiltered) and some other files |
|
85010d0eaa6c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine commit 305061c25b6fcf54d960f17c2cad15c30fb2e26a
iuc
parents:
0
diff
changeset
|
115 |
|
85010d0eaa6c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine commit 305061c25b6fcf54d960f17c2cad15c30fb2e26a
iuc
parents:
0
diff
changeset
|
116 `gff` All predicted miRNA families |
|
85010d0eaa6c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine commit 305061c25b6fcf54d960f17c2cad15c30fb2e26a
iuc
parents:
0
diff
changeset
|
117 `filtered_gff` High confidence miRNA family predictions after bitscore filtering. (This file is what you need in most cases) |
|
85010d0eaa6c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine commit 305061c25b6fcf54d960f17c2cad15c30fb2e26a
iuc
parents:
0
diff
changeset
|
118 `fasta` Both high and low confidence predictions in FASTA format |
|
85010d0eaa6c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine commit 305061c25b6fcf54d960f17c2cad15c30fb2e26a
iuc
parents:
0
diff
changeset
|
119 |
|
85010d0eaa6c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine commit 305061c25b6fcf54d960f17c2cad15c30fb2e26a
iuc
parents:
0
diff
changeset
|
120 miRNA prediction score is given in the header of the output filtered gff file |
|
0
f2e87c81497d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine commit 236a9bc5da1e5f73ba2c27b0664ac28ee14bb6da
iuc
parents:
diff
changeset
|
121 ]]></help> |
|
f2e87c81497d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine commit 236a9bc5da1e5f73ba2c27b0664ac28ee14bb6da
iuc
parents:
diff
changeset
|
122 <expand macro="citations"/> |
|
f2e87c81497d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine commit 236a9bc5da1e5f73ba2c27b0664ac28ee14bb6da
iuc
parents:
diff
changeset
|
123 <expand macro="creator"/> |
|
f2e87c81497d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine commit 236a9bc5da1e5f73ba2c27b0664ac28ee14bb6da
iuc
parents:
diff
changeset
|
124 </tool> |
