Mercurial > repos > iuc > maker
changeset 7:7bac6f5fcfa2 draft
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/maker commit 38b61f14db4a6e474c55e6107e31eaba6c677ad9"
| author | iuc |
|---|---|
| date | Tue, 22 Jun 2021 10:15:59 +0000 |
| parents | d46d803ca6cc |
| children | 3c1a01127868 |
| files | macros.xml maker.xml test-data/annot_fix_nucleotides.gff3 test-data/evidences_fix_nucletides.gff3 test-data/non_IUPAC.fasta |
| diffstat | 5 files changed, 131 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/macros.xml Tue Jan 05 09:00:59 2021 +0000 +++ b/macros.xml Tue Jun 22 10:15:59 2021 +0000 @@ -7,6 +7,7 @@ </requirements> </xml> <token name="@VERSION@">2.31.11</token> + <token name="@SUFFIX_VERSION@">1</token> <xml name="citations"> <citations>
--- a/maker.xml Tue Jan 05 09:00:59 2021 +0000 +++ b/maker.xml Tue Jun 22 10:15:59 2021 +0000 @@ -1,5 +1,5 @@ <?xml version="1.0"?> -<tool id="maker" name="Maker" profile="16.04" version="@VERSION@"> +<tool id="maker" name="Maker" profile="16.04" version="@VERSION@+galaxy@SUFFIX_VERSION@"> <description>genome annotation pipeline</description> <macros> <import>macros.xml</import> @@ -44,7 +44,7 @@ MPI_CMD="mpiexec -n \${GALAXY_SLOTS:-4}"; fi && - \${MPI_CMD} maker --ignore_nfs_tmp maker_opts.ctl maker_bopts.ctl maker_exe.ctl < /dev/null + \${MPI_CMD} maker --ignore_nfs_tmp $advanced.fix_nucleotides maker_opts.ctl maker_bopts.ctl maker_exe.ctl < /dev/null && @@ -453,6 +453,7 @@ </section> <section name="advanced" title="Advanced settings" expanded="False"> + <param name="fix_nucleotides" argument="-fix_nucleotides" type="boolean" truevalue="-fix_nucleotides" falsevalue="" checked="false" label="Fix nucleotides" help="This will replace non-IUPAC characters with 'N's."/> <param name="other_gff" type="data" format="gff" label="Extra features to pass-through to final Maker generated GFF3 file" optional="True"/> <param name="alt_peptide" type="text" value="C" size="1" label="Amino acid used to replace non-standard amino acids in BLAST databases"> <validator type="regex" message="This must be a single uppercase letter">^[A-Z]$</validator> @@ -563,6 +564,15 @@ <output name="output_gff" file="annot_dfam_up.gff3"/> <output name="output_evidences" file="evidences_norm_dfam_up.gff3" compare="sim_size"/> </test> + <test> + <param name="genome" value="genome.fasta"/> + <param name="est_evidences|est" value="non_IUPAC.fasta"/> + <param name="est_evidences|est2genome" value="1"/> + <param name="repeat_masking|repeat_source|source_type" value="no"/> + <param name="advanced|fix_nucleotides" value="true"/> + <output name="output_gff" file="annot_fix_nucleotides.gff3"/> + <output name="output_evidences" file="evidences_fix_nucletides.gff3" compare="sim_size"/> + </test> </tests> <help><