mspire 0.8.4 → 0.8.5
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/README.md +1 -1
- data/VERSION +1 -1
- data/lib/mspire/fasta.rb +5 -27
- data/lib/mspire/ident/peptide/db/creator.rb +248 -0
- data/lib/mspire/ident/peptide/db/io.rb +62 -0
- data/lib/mspire/ident/peptide/db.rb +18 -225
- data/lib/mspire/ident/peptide_hit/qvalue.rb +3 -2
- data/schema/peptide_hit_qvalues.pqh.tsv +5 -0
- data/script/mascot_dat_to_peptide_hit_qvalues.rb +118 -0
- data/spec/mspire/ident/peptide/db/creator_spec.rb +65 -0
- data/spec/mspire/ident/peptide/db/io_spec.rb +21 -0
- data/spec/mspire/ident/peptide/db_spec.rb +7 -97
- data/spec/testfiles/mspire/ident/peptide/db/uni_11_sp_tr.PEPTIDE_CENTRIC.yml +728 -0
- data/spec/testfiles/mspire/ident/peptide/db/uni_11_sp_tr.msd_clvg2.min_aaseq4.yml +728 -728
- metadata +9 -2
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.8.
|
4
|
+
version: 0.8.5
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2012-
|
13
|
+
date: 2012-10-10 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: nokogiri
|
@@ -223,6 +223,8 @@ files:
|
|
223
223
|
- lib/mspire/ident.rb
|
224
224
|
- lib/mspire/ident/peptide.rb
|
225
225
|
- lib/mspire/ident/peptide/db.rb
|
226
|
+
- lib/mspire/ident/peptide/db/creator.rb
|
227
|
+
- lib/mspire/ident/peptide/db/io.rb
|
226
228
|
- lib/mspire/ident/peptide_hit.rb
|
227
229
|
- lib/mspire/ident/peptide_hit/qvalue.rb
|
228
230
|
- lib/mspire/ident/pepxml.rb
|
@@ -307,7 +309,9 @@ files:
|
|
307
309
|
- obo/ims.obo
|
308
310
|
- obo/ms.obo
|
309
311
|
- obo/unit.obo
|
312
|
+
- schema/peptide_hit_qvalues.pqh.tsv
|
310
313
|
- script/download_uniprotkb_db.rb
|
314
|
+
- script/mascot_dat_to_peptide_hit_qvalues.rb
|
311
315
|
- script/mzml_read_binary.rb
|
312
316
|
- script/quant_compare_direct_injections.rb
|
313
317
|
- spec/cv/param_spec.rb
|
@@ -318,6 +322,8 @@ files:
|
|
318
322
|
- spec/mspire/digester_spec.rb
|
319
323
|
- spec/mspire/error_rate/qvalue_spec.rb
|
320
324
|
- spec/mspire/fasta_spec.rb
|
325
|
+
- spec/mspire/ident/peptide/db/creator_spec.rb
|
326
|
+
- spec/mspire/ident/peptide/db/io_spec.rb
|
321
327
|
- spec/mspire/ident/peptide/db_spec.rb
|
322
328
|
- spec/mspire/ident/pepxml/sample_enzyme_spec.rb
|
323
329
|
- spec/mspire/ident/pepxml/search_hit/modification_info_spec.rb
|
@@ -349,6 +355,7 @@ files:
|
|
349
355
|
- spec/obo_spec.rb
|
350
356
|
- spec/spec_helper.rb
|
351
357
|
- spec/testfiles/continuous_binary.tmp.ibd
|
358
|
+
- spec/testfiles/mspire/ident/peptide/db/uni_11_sp_tr.PEPTIDE_CENTRIC.yml
|
352
359
|
- spec/testfiles/mspire/ident/peptide/db/uni_11_sp_tr.fasta
|
353
360
|
- spec/testfiles/mspire/ident/peptide/db/uni_11_sp_tr.msd_clvg2.min_aaseq4.yml
|
354
361
|
- spec/testfiles/mspire/imzml/1_BB7_SIM_478.5.CHECK.ibd
|