# HG changeset patch # User cstrittmatter # Date 1522260350 14400 # Node ID 4b7f728bcd114ab063d953ced8aac480705c7f8d planemo upload commit cd1454c40a43ad9da3d59e6ba8359318fc772c43-dirty diff -r 000000000000 -r 4b7f728bcd11 ectyper --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/ectyper Wed Mar 28 14:05:50 2018 -0400 @@ -0,0 +1,13 @@ +#!/usr/bin/env python + +""" + Shell program for ectyper +""" +import sys +import os +sys.path.append(os.path.join(os.path.dirname(__file__), "..")) + +from ectyper import ectyper + +if __name__=='__main__': + ectyper.run_program() diff -r 000000000000 -r 4b7f728bcd11 ectyper.xml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/ectyper.xml Wed Mar 28 14:05:50 2018 -0400 @@ -0,0 +1,94 @@ + + + ectyper + python + + results.csv; + + GALAXY_URL + #end if + + + #if $jobtype.select != "cl" + $__tool_directory__/ectyper + #if $jobtype.select == "asm" + -i ${draft.name}.fasta + #else if $jobtype.select == "se" + -i ${fastq1.name}_1.fastq + #else if $jobtype.select == "pe" + -i ${fastq1.name}.fastq,${fastq2.name}.fastq + #end if + -d $percent_identity + -l $percent_length + -o "./"; cat ./output/output.csv > results.csv; + #end if + + ]]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff -r 000000000000 -r 4b7f728bcd11 results.csv