changeset 1:f4b1c60bf820 draft

Deleted selected files
author estrain
date Wed, 06 Dec 2017 15:21:19 -0500
parents b0e627ec0dda
children c400ab11b35d
files SeqSero/seqsero.xml
diffstat 1 files changed, 0 insertions(+), 77 deletions(-) [+]
line wrap: on
line diff
--- a/SeqSero/seqsero.xml	Wed Dec 06 15:17:29 2017 -0500
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,77 +0,0 @@
-<tool id="seqsero_v1" name="seqsero_v1" version="1.0">
-    <requirements>
-      <requirement type="package" version="2.7">python</requirement>
-      <requirement type="package">biopython</requirement>
-      <requirement type="package">blast</requirement>
-      <requirement type="package">samtools</requirement>
-      <requirement type="package">sra-tools</requirement>
-    </requirements>
-    <command detect_errors="exit_code"><![CDATA[
-      mkdir tempseq;
-      #if $jobtype.select == "asm"
-        ln -s $jobtype.draft tempsewq/sample.fasta;  
-      #else if $jobtype.select == "se"
-        ln -s $jobtype.fastq1 tempsewq/sample_1.fastq;  
-      #else if $jobtype.select == "pe"
-        ln -s $jobtype.fastq1 tempsewq/sample_1.fastq;  
-        ln -s $jobtype.fastq2 tempsewq/sample_2.fastq;  
-      #end if
-
-      $__tool_directory__/SeqSero.py
-      #if $jobtype.select == "asm"
-        -m 4
-      #else if $jobtype.select == "se"
-        -m 3
-      #else if $jobtype.select == "pe"
-        -m 2
-      #end if
-      -i tempseq
-      -b $maptype.select 
-      ; cat  *results*/*.txt > results.txt; 
-
-    ]]></command>
-    <inputs>
-      <conditional name="jobtype">
-        <param name="select" type="select" label="Assembly or FASTQ Reads?">
-          <option value="asm">Draft Genome</option>
-          <option value="se">Complete Genome</option>
-          <option value="pe">Complete Genome</option>
-        </param>
-        <when value="asm">
-          <param name="draft" type="data" format="fasta" label="FASTA" />
-        </when>
-        <when value="se">
-          <param name="fastq1" type="data" format="fastq" label="FASTQ" />
-        </when>
-        <when value="pe">
-          <param name="fastq1" type="data" format="fastq" label="FASTQ" />
-          <param name="fastq2" type="data" format="fastq" label="FASTQ" />
-        </when>
-      </conditional>
-
-      <conditional name="maptype">
-        <param name="select" type="select" label="Algorithms for BWA mapping?">
-          <option value="sam">sam</option>
-          <option value="mem">mem</option>
-        </param>
-      </conditional>
-
-    </inputs>
-    <outputs>
-      <data format="tabular" label="BTyper Results" name="results" from_work_dir="*.txt"/>
-    </outputs>
-    <help><![CDATA[
-
-    ]]></help>
-    <citations>
-       <citation type="bibtex">
-        @misc{zhang_yin_jones_zhang_deathrage_dinsmore_fitzgeral_fields_deng_2015,
-        title={Salmonella serotype determination utilizing high-throughput genome sequencing data.},
-        journal={J Clin Microbiol}, publisher={ASM},
-        author={Zhang S, Yin Y, Jones MB, Zhang Z, Deatherage Kaiser BL, Dinsmore BA, Fitzgerald C, Fields PI, Deng X.},
-        year={2015}, month={Max},
-        url={http://http://jcm.asm.org/content/early/2015/03/05/JCM.00323-15}},
-       }</citation>
-    </citations>
-
-</tool>