changeset 6:9a09f7072ed5 draft default tip

planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/annotateviz commit 92d0101d8677f60a314611d325ca51a809a545d7-dirty
author eduardo
date Tue, 27 Jun 2017 08:12:24 -0400
parents 9cc97d18dff1
children
files annotateviz.xml static/js/editgff.js
diffstat 2 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/annotateviz.xml	Sat Jun 24 15:49:54 2017 -0400
+++ b/annotateviz.xml	Tue Jun 27 08:12:24 2017 -0400
@@ -199,7 +199,7 @@
   </configfiles>
   <inputs>
       <param name="db" type="data" format="sqlite" />
-    <param name="genome" type="data" format="fasta" optional="false" label="Peptide predictions" help="Predicted peptides in fasta format" />
+    <param name="genome" type="data" format="fasta" optional="false" label="Contigs Fasta" help="Contigs in fasta format" />
     <repeat name="track_groups" title="Track Group">
         <param label="Track Category"
                name="category"
--- a/static/js/editgff.js	Sat Jun 24 15:49:54 2017 -0400
+++ b/static/js/editgff.js	Tue Jun 27 08:12:24 2017 -0400
@@ -22,7 +22,7 @@
                     console.log("removed lpart three_prime_UTR");
                 }
                 else {
-                    jsonobj[i].attributes.Parent[0] = '.'.join(lpart,1);
+                    jsonobj[i].attributes.Parent[0] = lpart+'.1';
                 }
             }
             if (jsonobj[i].attributes.Parent[0] === rpart){
@@ -31,7 +31,7 @@
                     console.log("removed rpart five_prime_UTR");
                 }
                 else {
-                    jsonobj[i].attributes.Parent[0] = '.'.join(lpart,1);
+                    jsonobj[i].attributes.Parent[0] = lpart+'.1'
                 }
             }
         }