ms-msrun 0.3.4 → 0.3.5
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION +1 -1
- data/bin/ms_to_search.rb +2 -2
- metadata +2 -2
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.3.
|
1
|
+
0.3.5
|
data/bin/ms_to_search.rb
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
#!/usr/bin/ruby
|
1
|
+
#!/usr/bin/env ruby
|
2
2
|
|
3
3
|
require 'rubygems'
|
4
4
|
require 'optparse'
|
@@ -8,7 +8,7 @@ opt = { :format => :mgf }
|
|
8
8
|
opts = OptionParser.new do |op|
|
9
9
|
op.banner = "usage: #{File.basename(__FILE__)} <file>.mzXML ..."
|
10
10
|
op.separator "outputs: <file>.mgf"
|
11
|
-
op.on("-f", "--format <mgf|ms2>",
|
11
|
+
op.on("-f", "--format <mgf|ms2>", "the format type") {|v| opt[:format] = v.to_sym }
|
12
12
|
end
|
13
13
|
|
14
14
|
if ARGV.size == 0
|