changeset 2:b4b6b660293a draft default tip

planemo upload for repository https://github.com/galaxyproject/tools-iuc/tools/irissv/ commit 695cbdabe249ed4a72c5d2f345dda439f67a2637
author iuc
date Wed, 06 Jul 2022 07:07:21 +0000
parents 1d4f065fa0ef
children
files irissv.xml
diffstat 1 files changed, 6 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/irissv.xml	Mon May 17 17:29:39 2021 +0000
+++ b/irissv.xml	Wed Jul 06 07:07:21 2022 +0000
@@ -1,5 +1,4 @@
-<?xml version="1.0"?>
-<tool id="irissv" name="Iris" version="@TOOL_VERSION@+galaxy1" profile="@PROFILE@">
+<tool id="irissv" name="Iris" version="@TOOL_VERSION@+galaxy2" profile="@PROFILE@">
     <description>Refine insertion sequences</description>
     <macros>
         <import>macros.xml</import>
@@ -8,13 +7,16 @@
     <expand macro="requirements"/>
     <expand macro="version_command"/>
 
-    <command detect_errors="exit_code"><![CDATA[
+    <command detect_errors="aggressive"><![CDATA[
     @REF_FASTA@
 
+    ln -s '$in_bam' reads.bam &&
+    ln -s '$in_bam.metadata.bam_index' 'reads.bam.bai' &&
+
     iris
         genome_in=reference
         vcf_in='${in_vcf}'
-        reads_in='${in_bam}'
+        reads_in='reads.bam'
         vcf_out='${out_vcf}'
         threads=\${GALAXY_SLOTS:-4}
         padding_before='${padding_before}'