# HG changeset patch
# User iuc
# Date 1760342365 0
# Node ID 137d00a9a598b88e38c4bb3ac74f071f2c7f3efd
# Parent b508935347051be87dc600df2c571d1a100890a8
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/panta/ commit 55ba2c9616d6567fe7e6a798103c28885ca754dd
diff -r b50893534705 -r 137d00a9a598 macros.xml
--- a/macros.xml Tue Sep 16 11:28:02 2025 +0000
+++ b/macros.xml Mon Oct 13 07:59:25 2025 +0000
@@ -1,6 +1,6 @@
1.0.1
- 0
+ 1
25.0
@@ -27,4 +27,4 @@
-
+
\ No newline at end of file
diff -r b50893534705 -r 137d00a9a598 panta.xml
--- a/panta.xml Tue Sep 16 11:28:02 2025 +0000
+++ b/panta.xml Mon Oct 13 07:59:25 2025 +0000
@@ -13,12 +13,12 @@
#if $input_type.input_type_selector == "gff":
#for gff in $input_type.input_gff
- #set identifier = re.sub('[^\s\w\-\\.]','_',str($gff.element_identifier))
- ln -fs '$gff' '$input_directory/$identifier' &&
+ #set $filename = '%s.gff' % re.sub('[^\w_-]', '_', str($gff.element_identifier))
+ cp '$gff' '$input_directory/$filename' &&
#end for
#elif $input_type.input_type_selector == "tsv":
- #set identifier = re.sub('[^\s\w\-\\.]','_',str($input_type.input_tsv.element_identifier))
- ln -fs '$input_type.input_tsv' '$input_directory/$identifier' &&
+ #set $filename = '%s.tsv' % re.sub('[^\w_-]', '_', str($input_type.input_tsv.element_identifier))
+ cp '$input_type.input_tsv' '$input_directory/$filename' &&
#end if
#if $mode.select_mode == "main":
@@ -402,7 +402,7 @@