Hi,
I want to add a small tools using bam to my local Galxy server.if i run this command on linux command line it generate one bam file into 96 bam file in the directory directly .
bamtools split -in inputfile.bam -stub split -tag RG
I want to make an HTML page as output from Galaxy from where i can download all 96 files one buy one or at once by select all.
I am new to galaxy and i just wrote few lines in XML code .How can i proceed it further.
<tool id="bamtesting" name="bamtest">
<description>bam tools to split RGAssign file into smaple file</description>
<command> bamtools split -in $inputfile -stub split -tag RG </command>
<inputs>
<param format="bam" name="inputfile" type="file" label="Source file .bam generated by RGAssign"/>
</inputs>
Thanks.