]> git.donarmstrong.com Git - biopieces.git/commitdiff
dropping swapcase_seq tobereplaced
authormartinahansen <martinahansen@74ccb610-7750-0410-82ae-013aeee3265d>
Fri, 6 Aug 2010 11:53:35 +0000 (11:53 +0000)
committermartinahansen <martinahansen@74ccb610-7750-0410-82ae-013aeee3265d>
Fri, 6 Aug 2010 11:53:35 +0000 (11:53 +0000)
git-svn-id: http://biopieces.googlecode.com/svn/trunk@1041 74ccb610-7750-0410-82ae-013aeee3265d

bp_bin/swapcase_seq [deleted file]

diff --git a/bp_bin/swapcase_seq b/bp_bin/swapcase_seq
deleted file mode 100755 (executable)
index 997d948..0000000
+++ /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