view nuclescore.xml @ 0:82dce1eb9074 draft default tip

Uploaded
author dcouvin
date Fri, 03 Sep 2021 22:36:56 +0000
parents
children
line wrap: on
line source

<tool id="nuclescore" name="NucleScore tool" version="0.1.0">
  <description>allows to get information for classification of genome assemblies</description>

<requirements>
  <requirement type="package" version="1.7.2">perl-bioperl</requirement>
</requirements>
 
<command detect_errors="aggressive"><![CDATA[ 

#import re
        ## Creates symlinks for each input file based on the Galaxy 'element_identifier'
        ## Used so that a human-readable name appears in the output table (instead of 'dataset_xyz.dat')
        #set $named_input_files = ''
        #for $input_file in $input_files
            ## Add single quotes around each input file identifier
            #set $_input_file = "'{}'".format($input_file.element_identifier)
            ln -s '${input_file}' ${_input_file} && 
            #set $named_input_files = $named_input_files + ' ' + $_input_file
        #end for

	
  	perl '$__tool_directory__/nucleScore.pl' $named_input_files > "$output"
	
       

]]></command>
 <!-- perl '$__tool_directory__/nucleScore.pl' $_input_file > "$output"  -->
 <!-- ./nuclescore.sh ${named_input_files} > "$output" -->

<inputs>
  <param format="fasta" name="input_files" type="data" label="Genome fasta file : " multiple="true" display="checkboxes"/>
</inputs>

 <outputs>
    <data format="tabular" name="output" />
 </outputs>

<help><![CDATA[
nucleScore.pl is a Perl script allowing to get information for classification of genome assemblies basing on nucleotides data (GC percent, AT/GC ratio, ...)

This script belongs to the getSequenceInfo supplementary tools

- GitHub: https://github.com/karubiotools/getSequenceInfo/tree/master/supplementary_tools
]]>
</help>

</tool>