changeset 0:d27bec235ad9 draft

Uploaded
author biowebdb
date Mon, 31 Mar 2014 14:10:21 -0400
parents
children dc29406ce984
files sffextract.rb
diffstat 1 files changed, 36 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/sffextract.rb	Mon Mar 31 14:10:21 2014 -0400
@@ -0,0 +1,36 @@
+#!/usr/bin/ruby
+##########################################################
+##     Wrapper to convert SFF to Fasta
+##
+##     Author: Biowebdb, 2014
+##
+##     This tool needs sff_extraxt version 0.28 or higher
+##     in path directory or $SFF_EXTRACT
+##
+##     This tool need Biowebdb Ruby Lib 
+##     (http://biowebdb.org)
+##     
+##########################################################
+require "logger"
+require "#{ENV['biowebdb']}/bioinformatics/Bioinformatics"
+
+c = Bioinformatics.program "Sff"
+c.logger(Logger.new(STDOUT))
+c.workPath="/tmp/"
+c.input = ARGV[0]
+if ARGV.size == 2
+	c.format = 'FASTQ'
+else
+	c.format = 'FASTA'
+end
+c.outputDir = "/tmp/#{Time.new.strftime("%Y%m%d%H%M%S")}"
+c.execute(c.lineCommand)
+
+basename = File.basename(c.input, '.*')
+
+if c.format == 'FASTQ'
+	Kernel.system("mv #{c.outputDir}/*.fastq #{ARGV[1]}")
+else
+	Kernel.system("mv #{c.output} #{ARGV[1]}")
+	Kernel.system("mv #{c.outputQual} #{ARGV[2]}")
+end
\ No newline at end of file