mspire 0.4.7 → 0.4.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/changelog.txt CHANGED
@@ -221,3 +221,7 @@ filter)
221
221
  ## version 0.4.7
222
222
  1. Added ability to quickly grab sequest params out of a .SRF file
223
223
  2. Added helpful runtime error if print_duplicate_references is 0.
224
+
225
+ ## version 0.4.9
226
+ 1. quiet some unneeded output and fixed truncation of filenames with '.'
227
+ inside them.
data/lib/mspire.rb CHANGED
@@ -1,4 +1,4 @@
1
1
 
2
2
  module Mspire
3
- Version = '0.4.7'
3
+ Version = '0.4.9'
4
4
  end
@@ -767,8 +767,8 @@ Default_Options = {
767
767
  # given any kind of filename (from windows or whatever)
768
768
  # returns the base of the filename with no file extension
769
769
  def self.base_name_noext(file)
770
- file.gsub!("\\", '/')
771
- File.basename(file).sub(/\.[\w^\.]+$/, '')
770
+ basename = file.split(/[\/\\]/).last
771
+ basename.chomp(File.extname(basename))
772
772
  end
773
773
 
774
774
 
data/lib/spec_id/srf.rb CHANGED
@@ -853,7 +853,6 @@ class SRF::OUT::Pep
853
853
  end
854
854
 
855
855
  def self.read_extra_references(fh, num_extra_references, pep_hits, global_ref_hash)
856
- p num_extra_references
857
856
  num_extra_references.times do
858
857
  # 80 bytes total (with index number)
859
858
  pep = pep_hits[fh.read(8).unpack('x4I').first - 1]
@@ -136,7 +136,7 @@ class Validator::Transmem::Protein < Validator::DigestionBased
136
136
  prts = pep.prots
137
137
  prts_w_keys = 0
138
138
  sum_of_fractions = 0.0
139
- prts.each do |prot|
139
+ prts.each do |prot|
140
140
  key = @transmem_index.reference_to_key(prot.reference)
141
141
  ans = @transmem_index.avg_overlap(key, pep.aaseq, :fraction)
142
142
  if ans
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mspire
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.7
4
+ version: 0.4.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - John Prince
@@ -9,11 +9,12 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2008-11-06 00:00:00 -07:00
12
+ date: 2010-01-06 00:00:00 -07:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: libjtp
17
+ type: :runtime
17
18
  version_requirement:
18
19
  version_requirements: !ruby/object:Gem::Requirement
19
20
  requirements:
@@ -23,6 +24,7 @@ dependencies:
23
24
  version:
24
25
  - !ruby/object:Gem::Dependency
25
26
  name: axml
27
+ type: :runtime
26
28
  version_requirement:
27
29
  version_requirements: !ruby/object:Gem::Requirement
28
30
  requirements:
@@ -32,6 +34,7 @@ dependencies:
32
34
  version:
33
35
  - !ruby/object:Gem::Dependency
34
36
  name: arrayclass
37
+ type: :runtime
35
38
  version_requirement:
36
39
  version_requirements: !ruby/object:Gem::Requirement
37
40
  requirements:
@@ -42,25 +45,25 @@ dependencies:
42
45
  description: mspire is for working with mass spectrometry proteomics data
43
46
  email: jprince@icmb.utexas.edu
44
47
  executables:
45
- - gi2annot.rb
46
- - protxml2prots_peps.rb
47
- - filter_and_validate.rb
48
- - raw_to_mzXML.rb
49
- - run_percolator.rb
48
+ - bioworks2excel.rb
49
+ - protein_summary.rb
50
+ - fasta_shaker.rb
50
51
  - srf_to_sqt.rb
51
- - prob_validate.rb
52
+ - pepproph_filter.rb
53
+ - raw_to_mzXML.rb
54
+ - sqt_group.rb
52
55
  - srf_group.rb
53
- - ms_to_lmat.rb
54
- - protein_summary.rb
55
56
  - bioworks_to_pepxml_gui.rb
56
57
  - id_class_anal.rb
58
+ - bioworks_to_pepxml.rb
59
+ - run_percolator.rb
60
+ - gi2annot.rb
57
61
  - id_precision.rb
58
- - sqt_group.rb
62
+ - filter_and_validate.rb
59
63
  - aafreqs.rb
60
- - pepproph_filter.rb
61
- - bioworks2excel.rb
62
- - bioworks_to_pepxml.rb
63
- - fasta_shaker.rb
64
+ - ms_to_lmat.rb
65
+ - protxml2prots_peps.rb
66
+ - prob_validate.rb
64
67
  extensions: []
65
68
 
66
69
  extra_rdoc_files:
@@ -73,278 +76,249 @@ files:
73
76
  - LICENSE
74
77
  - changelog.txt
75
78
  - release_notes.txt
76
- - lib/ms
77
- - lib/ms/parser
78
- - lib/ms/parser/mzxml
79
- - lib/ms/parser/mzxml/rexml.rb
80
- - lib/ms/parser/mzxml/libxml.rb
81
- - lib/ms/parser/mzxml/xmlparser.rb
82
- - lib/ms/parser/mzxml/regexp.rb
83
- - lib/ms/parser/mzxml/axml.rb
84
- - lib/ms/parser/mzxml/hpricot.rb
85
- - lib/ms/parser/mzxml/dom.rb
86
- - lib/ms/parser/mzdata
87
- - lib/ms/parser/mzdata/libxml.rb
79
+ - lib/ms/parser/mzdata.rb
88
80
  - lib/ms/parser/mzdata/axml.rb
81
+ - lib/ms/parser/mzdata/libxml.rb
89
82
  - lib/ms/parser/mzdata/dom.rb
90
- - lib/ms/parser/mzdata.rb
91
83
  - lib/ms/parser/mzxml.rb
84
+ - lib/ms/parser/mzxml/axml.rb
85
+ - lib/ms/parser/mzxml/hpricot.rb
86
+ - lib/ms/parser/mzxml/libxml.rb
87
+ - lib/ms/parser/mzxml/dom.rb
88
+ - lib/ms/parser/mzxml/regexp.rb
89
+ - lib/ms/parser/mzxml/rexml.rb
90
+ - lib/ms/parser/mzxml/xmlparser.rb
91
+ - lib/ms/spectrum.rb
92
92
  - lib/ms/msrun.rb
93
- - lib/ms/gradient_program.rb
94
- - lib/ms/precursor.rb
95
- - lib/ms/msrun_index.rb
96
93
  - lib/ms/parser.rb
97
- - lib/ms/spectrum.rb
98
- - lib/ms/converter
94
+ - lib/ms/msrun_index.rb
99
95
  - lib/ms/converter/mzxml.rb
100
96
  - lib/ms/scan.rb
101
- - lib/core_extensions.rb
102
- - lib/scan_i.rb
103
- - lib/fasta.rb
104
- - lib/qvalue.rb
105
- - lib/roc.rb
106
- - lib/spec_id.rb
107
- - lib/xml.rb
97
+ - lib/ms/precursor.rb
98
+ - lib/ms/gradient_program.rb
99
+ - lib/align/chams.rb
108
100
  - lib/group_by.rb
109
- - lib/index_by.rb
110
- - lib/sample_enzyme.rb
111
- - lib/transmem
112
- - lib/transmem/phobius.rb
113
- - lib/transmem/toppred.rb
114
- - lib/ms.rb
115
- - lib/pi_zero.rb
116
- - lib/spec_id
117
- - lib/spec_id/srf.rb
118
- - lib/spec_id/sequest.rb
119
- - lib/spec_id/parser
101
+ - lib/mspire.rb
102
+ - lib/spec_id/protein_summary.rb
120
103
  - lib/spec_id/parser/proph.rb
121
- - lib/spec_id/sequest
122
- - lib/spec_id/sequest/params.rb
123
- - lib/spec_id/sequest/pepxml.rb
124
- - lib/spec_id/precision
125
- - lib/spec_id/precision/filter.rb
126
- - lib/spec_id/precision/prob.rb
127
- - lib/spec_id/precision/output.rb
128
- - lib/spec_id/precision/filter
129
- - lib/spec_id/precision/filter/interactive.rb
104
+ - lib/spec_id/mass.rb
105
+ - lib/spec_id/srf.rb
106
+ - lib/spec_id/proph/prot_summary.rb
107
+ - lib/spec_id/proph/pep_summary.rb
130
108
  - lib/spec_id/precision/filter/cmdline.rb
109
+ - lib/spec_id/precision/filter/interactive.rb
131
110
  - lib/spec_id/precision/filter/output.rb
132
- - lib/spec_id/precision/prob
133
111
  - lib/spec_id/precision/prob/cmdline.rb
134
112
  - lib/spec_id/precision/prob/output.rb
135
- - lib/spec_id/mass.rb
136
- - lib/spec_id/proph
137
- - lib/spec_id/proph/pep_summary.rb
138
- - lib/spec_id/proph/prot_summary.rb
139
- - lib/spec_id/protein_summary.rb
113
+ - lib/spec_id/precision/prob.rb
114
+ - lib/spec_id/precision/output.rb
115
+ - lib/spec_id/precision/filter.rb
140
116
  - lib/spec_id/proph.rb
141
- - lib/spec_id/aa_freqs.rb
117
+ - lib/spec_id/bioworks.rb
118
+ - lib/spec_id/sequest/params.rb
119
+ - lib/spec_id/sequest/pepxml.rb
142
120
  - lib/spec_id/digestor.rb
121
+ - lib/spec_id/sequest.rb
143
122
  - lib/spec_id/sqt.rb
144
- - lib/spec_id/bioworks.rb
145
- - lib/merge_deep.rb
123
+ - lib/spec_id/aa_freqs.rb
124
+ - lib/pi_zero.rb
146
125
  - lib/align.rb
126
+ - lib/scan_i.rb
127
+ - lib/validator.rb
128
+ - lib/spec_id.rb
129
+ - lib/archive/targz.rb
130
+ - lib/qvalue.rb
131
+ - lib/ms.rb
132
+ - lib/core_extensions.rb
133
+ - lib/bsearch.rb
134
+ - lib/roc.rb
135
+ - lib/sample_enzyme.rb
136
+ - lib/spec_id_xml.rb
147
137
  - lib/xmlparser_wrapper.rb
138
+ - lib/fasta.rb
139
+ - lib/transmem/toppred.rb
140
+ - lib/transmem/phobius.rb
141
+ - lib/index_by.rb
148
142
  - lib/transmem.rb
149
- - lib/align
150
- - lib/align/chams.rb
151
- - lib/validator.rb
152
143
  - lib/gi.rb
153
- - lib/validator
154
- - lib/validator/prot_from_pep.rb
155
- - lib/validator/aa.rb
156
- - lib/validator/decoy.rb
157
- - lib/validator/true_pos.rb
144
+ - lib/xml_style_parser.rb
145
+ - lib/merge_deep.rb
146
+ - lib/validator/bias.rb
158
147
  - lib/validator/aa_est.rb
159
- - lib/validator/probability.rb
160
148
  - lib/validator/cmdline.rb
161
- - lib/validator/digestion_based.rb
162
- - lib/validator/transmem.rb
163
- - lib/validator/bias.rb
164
149
  - lib/validator/background.rb
150
+ - lib/validator/digestion_based.rb
151
+ - lib/validator/decoy.rb
152
+ - lib/validator/true_pos.rb
153
+ - lib/validator/aa.rb
165
154
  - lib/validator/q_value.rb
166
- - lib/xml_style_parser.rb
167
- - lib/mspire.rb
168
- - lib/archive
169
- - lib/archive/targz.rb
170
- - lib/spec_id_xml.rb
171
- - lib/bsearch.rb
172
- - bin/gi2annot.rb
173
- - bin/protxml2prots_peps.rb
174
- - bin/filter_and_validate.rb
175
- - bin/raw_to_mzXML.rb
176
- - bin/run_percolator.rb
155
+ - lib/validator/probability.rb
156
+ - lib/validator/transmem.rb
157
+ - lib/validator/prot_from_pep.rb
158
+ - lib/xml.rb
159
+ - bin/bioworks2excel.rb
160
+ - bin/protein_summary.rb
161
+ - bin/fasta_shaker.rb
177
162
  - bin/srf_to_sqt.rb
178
- - bin/prob_validate.rb
163
+ - bin/pepproph_filter.rb
164
+ - bin/raw_to_mzXML.rb
165
+ - bin/sqt_group.rb
179
166
  - bin/srf_group.rb
180
- - bin/ms_to_lmat.rb
181
- - bin/protein_summary.rb
182
167
  - bin/bioworks_to_pepxml_gui.rb
183
168
  - bin/id_class_anal.rb
169
+ - bin/bioworks_to_pepxml.rb
170
+ - bin/run_percolator.rb
171
+ - bin/gi2annot.rb
184
172
  - bin/id_precision.rb
185
- - bin/sqt_group.rb
173
+ - bin/filter_and_validate.rb
186
174
  - bin/aafreqs.rb
187
- - bin/pepproph_filter.rb
188
- - bin/bioworks2excel.rb
189
- - bin/bioworks_to_pepxml.rb
190
- - bin/fasta_shaker.rb
191
- - script/estimate_fpr_by_cysteine.rb
192
- - script/toppred_to_yaml.rb
175
+ - bin/ms_to_lmat.rb
176
+ - bin/protxml2prots_peps.rb
177
+ - bin/prob_validate.rb
178
+ - script/mascot_fix_pepxml.rb
193
179
  - script/extract_gradient_programs.rb
194
- - script/mzXML2timeIndex.rb
195
- - script/genuine_tps_and_probs.rb
196
- - script/histogram_probs.rb
197
- - script/find_cysteine_background.rb
198
- - script/degenerate_peptides.rb
180
+ - script/smriti_final_analysis.rb
199
181
  - script/prep_dir.rb
182
+ - script/toppred_to_yaml.rb
183
+ - script/sqt_to_meta.rb
200
184
  - script/compile_and_plot_smriti_final.rb
201
- - script/tpp_installer.rb
202
- - script/mascot_fix_pepxml.rb
185
+ - script/find_cysteine_background.rb
186
+ - script/estimate_fpr_by_cysteine.rb
203
187
  - script/top_hit_per_scan.rb
204
- - script/create_little_pepxml.rb
205
- - script/smriti_final_analysis.rb
206
- - script/get_apex_values_rexml.rb
207
- - script/sqt_to_meta.rb
208
188
  - script/msvis.rb
189
+ - script/histogram_probs.rb
190
+ - script/genuine_tps_and_probs.rb
191
+ - script/get_apex_values_rexml.rb
209
192
  - script/simple_protein_digestion.rb
193
+ - script/mzXML2timeIndex.rb
210
194
  - script/peps_per_bin.rb
211
- - specs/ms
212
- - specs/ms/gradient_program_spec.rb
195
+ - script/tpp_installer.rb
196
+ - script/degenerate_peptides.rb
197
+ - script/create_little_pepxml.rb
198
+ - specs/ms/msrun_spec.rb
213
199
  - specs/ms/parser_spec.rb
214
200
  - specs/ms/spectrum_spec.rb
215
- - specs/ms/msrun_spec.rb
216
- - specs/merge_deep_spec.rb
217
- - specs/qvalue_spec.rb
218
- - specs/spec_helper.rb
219
- - specs/fasta_spec.rb
220
- - specs/transmem
221
- - specs/transmem/phobius_spec.rb
222
- - specs/transmem/toppred_spec.rb
223
- - specs/align_spec.rb
224
- - specs/spec_id_helper.rb
225
- - specs/transmem_spec.rb
226
- - specs/spec_id
201
+ - specs/ms/gradient_program_spec.rb
202
+ - specs/spec_id/sqt_spec.rb
227
203
  - specs/spec_id/protein_summary_spec.rb
204
+ - specs/spec_id/aa_freqs_spec.rb
205
+ - specs/spec_id/proph/pep_summary_spec.rb
206
+ - specs/spec_id/proph/prot_summary_spec.rb
228
207
  - specs/spec_id/bioworks_spec.rb
229
- - specs/spec_id/sqt_spec.rb
230
- - specs/spec_id/sequest
231
- - specs/spec_id/sequest/pepxml_spec.rb
232
- - specs/spec_id/sequest/params_spec.rb
233
- - specs/spec_id/precision
234
- - specs/spec_id/precision/filter_spec.rb
208
+ - specs/spec_id/srf_spec.rb
209
+ - specs/spec_id/precision/filter/output_spec.rb
210
+ - specs/spec_id/precision/filter/cmdline_spec.rb
235
211
  - specs/spec_id/precision/prob_spec_helper.rb
236
212
  - specs/spec_id/precision/prob_spec.rb
237
- - specs/spec_id/precision/filter
238
- - specs/spec_id/precision/filter/cmdline_spec.rb
239
- - specs/spec_id/precision/filter/output_spec.rb
240
- - specs/spec_id/proph
241
- - specs/spec_id/proph/prot_summary_spec.rb
242
- - specs/spec_id/proph/pep_summary_spec.rb
243
- - specs/spec_id/srf_spec.rb
213
+ - specs/spec_id/precision/filter_spec.rb
244
214
  - specs/spec_id/srf_spec_helper.rb
245
- - specs/spec_id/sequest_spec.rb
215
+ - specs/spec_id/sequest/params_spec.rb
216
+ - specs/spec_id/sequest/pepxml_spec.rb
246
217
  - specs/spec_id/digestor_spec.rb
247
- - specs/spec_id/aa_freqs_spec.rb
248
- - specs/rspec_autotest.rb
249
- - specs/pi_zero_spec.rb
218
+ - specs/spec_id/sequest_spec.rb
250
219
  - specs/xml_spec.rb
220
+ - specs/roc_spec.rb
221
+ - specs/merge_deep_spec.rb
251
222
  - specs/sample_enzyme_spec.rb
252
- - specs/transmem_spec_shared.rb
253
223
  - specs/gi_spec.rb
224
+ - specs/transmem_spec_shared.rb
225
+ - specs/validator_helper.rb
226
+ - specs/pi_zero_spec.rb
254
227
  - specs/load_bin_path.rb
255
- - specs/spec_id_spec.rb
256
- - specs/validator
257
- - specs/validator/true_pos_spec.rb
258
- - specs/validator/aa_est_spec.rb
259
- - specs/validator/background_spec.rb
260
- - specs/validator/bias_spec.rb
261
- - specs/validator/transmem_spec.rb
262
- - specs/validator/prot_from_pep_spec.rb
263
- - specs/validator/decoy_spec.rb
264
- - specs/validator/aa_spec.rb
265
- - specs/validator/fasta_helper.rb
266
- - specs/bin
267
- - specs/bin/filter_and_validate__multiple_vals_helper.yaml
268
- - specs/bin/protein_summary_spec.rb
228
+ - specs/spec_id_helper.rb
269
229
  - specs/bin/filter_and_validate_spec.rb
270
- - specs/bin/ms_to_lmat_spec.rb
271
230
  - specs/bin/fasta_shaker_spec.rb
272
- - specs/bin/bioworks_to_pepxml_spec.rb
231
+ - specs/bin/protein_summary_spec.rb
273
232
  - specs/bin/prob_validate_spec.rb
274
- - specs/roc_spec.rb
233
+ - specs/bin/ms_to_lmat_spec.rb
234
+ - specs/bin/filter_and_validate__multiple_vals_helper.yaml
235
+ - specs/bin/bioworks_to_pepxml_spec.rb
236
+ - specs/align_spec.rb
275
237
  - specs/spec_id_xml_spec.rb
276
- - specs/validator_helper.rb
277
- - test_files/020a.mzXML.timeIndex
238
+ - specs/transmem_spec.rb
239
+ - specs/spec_helper.rb
240
+ - specs/transmem/toppred_spec.rb
241
+ - specs/transmem/phobius_spec.rb
242
+ - specs/qvalue_spec.rb
243
+ - specs/rspec_autotest.rb
244
+ - specs/fasta_spec.rb
245
+ - specs/spec_id_spec.rb
246
+ - specs/validator/aa_spec.rb
247
+ - specs/validator/prot_from_pep_spec.rb
248
+ - specs/validator/bias_spec.rb
249
+ - specs/validator/decoy_spec.rb
250
+ - specs/validator/background_spec.rb
251
+ - specs/validator/fasta_helper.rb
252
+ - specs/validator/true_pos_spec.rb
253
+ - specs/validator/transmem_spec.rb
254
+ - specs/validator/aa_est_spec.rb
278
255
  - test_files/yeast_gly_small2.parentTimes
279
- - test_files/bioworks_single_run_small.xml
280
- - test_files/bioworks_with_INV_small.xml
281
- - test_files/validator_hits_separate
282
- - test_files/validator_hits_separate/bioworks_small_HS.xml
256
+ - test_files/yeast_gly_small.1.0_1.0_1.0.parentTimes
283
257
  - test_files/validator_hits_separate/bias_bioworks_small_HS.fasta
284
- - test_files/opd1
285
- - test_files/opd1/twenty_scans_answ.lmata
258
+ - test_files/validator_hits_separate/bioworks_small_HS.xml
259
+ - test_files/tf_bioworks2excel.bioXML
260
+ - test_files/phobius.small.small.txt
261
+ - test_files/bioworks_with_SHUFF_small.xml
262
+ - test_files/4-03-03_small.xml
263
+ - test_files/toppred.small.out
264
+ - test_files/yeast_gly_small-prot.xml
265
+ - test_files/bioworks32.params
266
+ - test_files/tf_bioworks2excel.txt.actual
267
+ - test_files/bioworks_with_INV_small.xml
268
+ - test_files/bioworks_single_run_small.xml
269
+ - test_files/bioworks_small.xml
270
+ - test_files/bioworks_small.phobius
271
+ - test_files/bioworks31.params
272
+ - test_files/s01_anC1_ld020mM.key.txt
273
+ - test_files/7MIX_STD_110802_1.sequest_params_fragment.srf
274
+ - test_files/opd1_020_beginning.RAW
275
+ - test_files/yeast_gly_small.xml
286
276
  - test_files/opd1/000.tpp_2.9.2.first10.xml
287
- - test_files/opd1/000.v2.1.mzXML.timeIndex
277
+ - test_files/opd1/sequest.3.2.params
278
+ - test_files/opd1/000.my_answer.100lines.xml
279
+ - test_files/opd1/twenty_scans.v2.1.mzXML
280
+ - test_files/opd1/000_020-prot.png
288
281
  - test_files/opd1/opd1_cat_inv_small-prot.xml
289
- - test_files/opd1/000_020_3prots-prot.mod_initprob.xml
282
+ - test_files/opd1/000.tpp_1.2.3.first10.xml
290
283
  - test_files/opd1/sequest.3.1.params
291
- - test_files/opd1/000_020-prot.png
292
284
  - test_files/opd1/twenty_scans.mzXML
293
- - test_files/opd1/twenty_scans.v2.1.mzXML
294
- - test_files/opd1/000.tpp_1.2.3.first10.xml
295
- - test_files/opd1/000_020_3prots-prot.xml
296
- - test_files/opd1/000.my_answer.100lines.xml
285
+ - test_files/opd1/000_020_3prots-prot.mod_initprob.xml
286
+ - test_files/opd1/twenty_scans_answ.lmata
287
+ - test_files/opd1/000.v2.1.mzXML.timeIndex
297
288
  - test_files/opd1/twenty_scans_answ.lmat
298
- - test_files/opd1/sequest.3.2.params
299
- - test_files/bioworks_small.xml
300
- - test_files/yeast_gly_small.1.0_1.0_1.0.parentTimes
301
- - test_files/bioworks_with_SHUFF_small.xml
302
- - test_files/yeast_gly_small.xml
303
- - test_files/bioworks_small.toppred.out
304
- - test_files/4-03-03_small-prot.xml
305
- - test_files/bioworks32.params
306
- - test_files/bioworks_small.fasta
289
+ - test_files/opd1/000_020_3prots-prot.xml
290
+ - test_files/small.sqt
307
291
  - test_files/pepproph_small.xml
308
- - test_files/4-03-03_mzXML
309
- - test_files/4-03-03_mzXML/020.mzXML.timeIndex
310
- - test_files/4-03-03_mzXML/000.mzXML.timeIndex
311
- - test_files/smallraw.RAW
312
- - test_files/toppred.small.out
313
- - test_files/head_of_7MIX.srf
314
- - test_files/bioworks-3.3_10prots.xml
315
- - test_files/interact-opd1_mods_small-prot.xml
316
- - test_files/s01_anC1_ld020mM.meth
317
292
  - test_files/phobius.small.noheader.txt
318
- - test_files/opd1_020_beginning.RAW
293
+ - test_files/4-03-03_small-prot.xml
294
+ - test_files/interact-opd1_mods_small-prot.xml
295
+ - test_files/messups.fasta
319
296
  - test_files/toppred.xml.out
320
- - test_files/4-03-03_small.xml
321
- - test_files/bioworks_small.phobius
322
- - test_files/phobius.small.small.txt
323
- - test_files/tf_bioworks2excel.bioXML
324
- - test_files/000_pepxml18_small.xml
325
297
  - test_files/bioworks33.params
326
- - test_files/tf_bioworks2excel.txt.actual
327
- - test_files/s01_anC1_ld020mM.key.txt
298
+ - test_files/020a.mzXML.timeIndex
299
+ - test_files/bioworks_small.toppred.out
328
300
  - test_files/bioworks_small.params
329
- - test_files/yeast_gly_small-prot.xml
330
- - test_files/messups.fasta
331
- - test_files/orbitrap_mzData
301
+ - test_files/head_of_7MIX.srf
302
+ - test_files/s01_anC1_ld020mM.meth
303
+ - test_files/000_pepxml18_small.xml
332
304
  - test_files/orbitrap_mzData/000_cut.xml
333
- - test_files/7MIX_STD_110802_1.sequest_params_fragment.srf
334
- - test_files/bioworks31.params
335
- - test_files/small.sqt
305
+ - test_files/bioworks_small.fasta
336
306
  - test_files/small.fasta
337
- - test_files/opd1_2runs_2mods
307
+ - test_files/bioworks-3.3_10prots.xml
338
308
  - test_files/opd1_2runs_2mods/interact-opd1_mods__small.xml
339
- - test_files/opd1_2runs_2mods/data
340
- - test_files/opd1_2runs_2mods/data/README.txt
309
+ - test_files/opd1_2runs_2mods/data/040.readw.mzXML
341
310
  - test_files/opd1_2runs_2mods/data/040.mzData.xml
342
311
  - test_files/opd1_2runs_2mods/data/020.readw.mzXML
343
- - test_files/opd1_2runs_2mods/data/040.readw.mzXML
344
312
  - test_files/opd1_2runs_2mods/data/020.mzData.xml
313
+ - test_files/opd1_2runs_2mods/data/README.txt
314
+ - test_files/smallraw.RAW
315
+ - test_files/4-03-03_mzXML/020.mzXML.timeIndex
316
+ - test_files/4-03-03_mzXML/000.mzXML.timeIndex
345
317
  - test_files/corrupted_900.srf
346
318
  has_rdoc: true
347
319
  homepage: http://mspire.rubyforge.org
320
+ licenses: []
321
+
348
322
  post_install_message:
349
323
  rdoc_options:
350
324
  - --main
@@ -372,55 +346,55 @@ requirements:
372
346
  - "\"rake\" is useful for development"
373
347
  - "\"webgen (with gems redcloth and bluecloth) is necessary to build web pages"
374
348
  rubyforge_project: mspire
375
- rubygems_version: 1.1.1
349
+ rubygems_version: 1.3.5
376
350
  signing_key:
377
- specification_version: 2
351
+ specification_version: 3
378
352
  summary: Mass Spectrometry Proteomics Objects, Scripts, and Executables
379
353
  test_files:
380
- - specs/ms/gradient_program_spec.rb
354
+ - specs/ms/msrun_spec.rb
381
355
  - specs/ms/parser_spec.rb
382
356
  - specs/ms/spectrum_spec.rb
383
- - specs/ms/msrun_spec.rb
384
- - specs/merge_deep_spec.rb
385
- - specs/qvalue_spec.rb
386
- - specs/fasta_spec.rb
387
- - specs/transmem/phobius_spec.rb
388
- - specs/transmem/toppred_spec.rb
389
- - specs/align_spec.rb
390
- - specs/transmem_spec.rb
391
- - specs/spec_id/protein_summary_spec.rb
392
- - specs/spec_id/bioworks_spec.rb
357
+ - specs/ms/gradient_program_spec.rb
393
358
  - specs/spec_id/sqt_spec.rb
394
- - specs/spec_id/sequest/pepxml_spec.rb
395
- - specs/spec_id/sequest/params_spec.rb
396
- - specs/spec_id/precision/filter_spec.rb
397
- - specs/spec_id/precision/prob_spec.rb
398
- - specs/spec_id/precision/filter/cmdline_spec.rb
399
- - specs/spec_id/precision/filter/output_spec.rb
400
- - specs/spec_id/proph/prot_summary_spec.rb
359
+ - specs/spec_id/protein_summary_spec.rb
360
+ - specs/spec_id/aa_freqs_spec.rb
401
361
  - specs/spec_id/proph/pep_summary_spec.rb
362
+ - specs/spec_id/proph/prot_summary_spec.rb
363
+ - specs/spec_id/bioworks_spec.rb
402
364
  - specs/spec_id/srf_spec.rb
403
- - specs/spec_id/sequest_spec.rb
365
+ - specs/spec_id/precision/filter/output_spec.rb
366
+ - specs/spec_id/precision/filter/cmdline_spec.rb
367
+ - specs/spec_id/precision/prob_spec.rb
368
+ - specs/spec_id/precision/filter_spec.rb
369
+ - specs/spec_id/sequest/params_spec.rb
370
+ - specs/spec_id/sequest/pepxml_spec.rb
404
371
  - specs/spec_id/digestor_spec.rb
405
- - specs/spec_id/aa_freqs_spec.rb
406
- - specs/pi_zero_spec.rb
372
+ - specs/spec_id/sequest_spec.rb
407
373
  - specs/xml_spec.rb
374
+ - specs/roc_spec.rb
375
+ - specs/merge_deep_spec.rb
408
376
  - specs/sample_enzyme_spec.rb
409
377
  - specs/gi_spec.rb
410
- - specs/spec_id_spec.rb
411
- - specs/validator/true_pos_spec.rb
412
- - specs/validator/aa_est_spec.rb
413
- - specs/validator/background_spec.rb
414
- - specs/validator/bias_spec.rb
415
- - specs/validator/transmem_spec.rb
416
- - specs/validator/prot_from_pep_spec.rb
417
- - specs/validator/decoy_spec.rb
418
- - specs/validator/aa_spec.rb
419
- - specs/bin/protein_summary_spec.rb
378
+ - specs/pi_zero_spec.rb
420
379
  - specs/bin/filter_and_validate_spec.rb
421
- - specs/bin/ms_to_lmat_spec.rb
422
380
  - specs/bin/fasta_shaker_spec.rb
423
- - specs/bin/bioworks_to_pepxml_spec.rb
381
+ - specs/bin/protein_summary_spec.rb
424
382
  - specs/bin/prob_validate_spec.rb
425
- - specs/roc_spec.rb
383
+ - specs/bin/ms_to_lmat_spec.rb
384
+ - specs/bin/bioworks_to_pepxml_spec.rb
385
+ - specs/align_spec.rb
426
386
  - specs/spec_id_xml_spec.rb
387
+ - specs/transmem_spec.rb
388
+ - specs/transmem/toppred_spec.rb
389
+ - specs/transmem/phobius_spec.rb
390
+ - specs/qvalue_spec.rb
391
+ - specs/fasta_spec.rb
392
+ - specs/spec_id_spec.rb
393
+ - specs/validator/aa_spec.rb
394
+ - specs/validator/prot_from_pep_spec.rb
395
+ - specs/validator/bias_spec.rb
396
+ - specs/validator/decoy_spec.rb
397
+ - specs/validator/background_spec.rb
398
+ - specs/validator/true_pos_spec.rb
399
+ - specs/validator/transmem_spec.rb
400
+ - specs/validator/aa_est_spec.rb