From 4fe84eb2b75612ce1d351a704602fdbb79b98868 Mon Sep 17 00:00:00 2001 From: martinahansen Date: Fri, 6 Aug 2010 11:53:35 +0000 Subject: [PATCH] dropping swapcase_seq tobereplaced git-svn-id: http://biopieces.googlecode.com/svn/trunk@1041 74ccb610-7750-0410-82ae-013aeee3265d --- bp_bin/swapcase_seq | 40 ---------------------------------------- 1 file changed, 40 deletions(-) delete mode 100755 bp_bin/swapcase_seq diff --git a/bp_bin/swapcase_seq b/bp_bin/swapcase_seq deleted file mode 100755 index 997d948..0000000 --- a/bp_bin/swapcase_seq +++ /dev/null @@ -1,40 +0,0 @@ -#!/usr/bin/env ruby - -require 'optparse' -require 'pp' - -options = {} - -optparse = OptionParser.new do |opts| - opts.on( '-?', '--help', 'Display this screen' ) do - biopiece = $0.split( "/" ).last - exec "print_wiki --data_in #{ ENV[ 'BP_DIR' ] }/bp_usage/#{ biopiece }.wiki --help" - exit - end - - opts.on( '-v', '--verbose' ) do - options[ :verbose ] = true - end - - opts.on( '-I', '--stream_in FILE', Time ) do |arg| - options[:stream_in] = arg - end - -# opts.on( '-I', '--stream_in FILE', "Mandatory argument" ) do |arg| -# options[:stream_in] = arg -# end - - opts.on( '-O', '--stream_out FILE', "Mandatory argument" ) do |arg| - options[:stream_out] = arg - end -end - -optparse.parse! - -pp "Options:", options -pp "ARGV:", ARGV - -if ARGV.length == 0 then - biopiece = $0.split( "/" ).last - exec "print_wiki --data_in #{ ENV[ 'BP_DIR' ] }/bp_usage/#{ biopiece }.wiki" -end -- 2.39.2