mspire 0.8.0 → 0.8.1
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 +60 -0
- data/Rakefile +16 -4
- data/VERSION +1 -1
- data/lib/mspire/imzml/writer/commandline.rb +1 -1
- data/lib/mspire/imzml/writer.rb +20 -1
- data/lib/mspire/mzml/cv.rb +3 -4
- data/obo/ims.obo +2 -4
- data/obo/ms.obo +708 -56
- data/obo/unit.obo +1 -1
- data/spec/mspire/imzml/writer_spec.rb +30 -0
- data/spec/testfiles/mspire/mzml/1_BB7_SIM_478.5.CHECK.ibd +0 -0
- data/spec/testfiles/mspire/mzml/1_BB7_SIM_478.5.CHECK.imzML +3975 -0
- data/spec/testfiles/mspire/mzml/mspire_simulated.MSn.check.mzML +2 -2
- metadata +6 -4
- data/README.rdoc +0 -24
@@ -1,8 +1,8 @@
|
|
1
1
|
<?xml version="1.0" encoding="UTF-8"?>
|
2
2
|
<mzML xmlns="http://psi.hupo.org/ms/mzml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" version="1.1.0" id="ms1_and_ms2">
|
3
3
|
<cvList count="3">
|
4
|
-
<cv id="MS" fullName="Proteomics Standards Initiative Mass Spectrometry Ontology" URI="http://psidev.cvs.sourceforge.net/*checkout*/psidev/psi/psi-ms/mzML/controlledVocabulary/psi-ms.obo" version="3.
|
5
|
-
<cv id="UO" fullName="Unit Ontology" URI="http://obo.cvs.sourceforge.net/*checkout*/obo/obo/ontology/phenotype/unit.obo" version="
|
4
|
+
<cv id="MS" fullName="Proteomics Standards Initiative Mass Spectrometry Ontology" URI="http://psidev.cvs.sourceforge.net/*checkout*/psidev/psi/psi-ms/mzML/controlledVocabulary/psi-ms.obo" version="3.29.0"/>
|
5
|
+
<cv id="UO" fullName="Unit Ontology" URI="http://obo.cvs.sourceforge.net/*checkout*/obo/obo/ontology/phenotype/unit.obo" version="12:10:2011"/>
|
6
6
|
<cv id="IMS" fullName="Imaging MS Ontology" URI="http://www.maldi-msi.org/download/imzml/imagingMS.obo" version="0.9.1"/>
|
7
7
|
</cvList>
|
8
8
|
<fileDescription>
|
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.1
|
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-07-
|
13
|
+
date: 2012-07-25 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: nokogiri
|
@@ -196,10 +196,10 @@ executables:
|
|
196
196
|
extensions: []
|
197
197
|
extra_rdoc_files:
|
198
198
|
- LICENSE
|
199
|
-
- README.
|
199
|
+
- README.md
|
200
200
|
files:
|
201
201
|
- LICENSE
|
202
|
-
- README.
|
202
|
+
- README.md
|
203
203
|
- Rakefile
|
204
204
|
- VERSION
|
205
205
|
- bin/mspire
|
@@ -352,6 +352,8 @@ files:
|
|
352
352
|
- spec/testfiles/mspire/ident/peptide/db/uni_11_sp_tr.msd_clvg2.min_aaseq4.yml
|
353
353
|
- spec/testfiles/mspire/imzml/continuous_binary_check.ibd
|
354
354
|
- spec/testfiles/mspire/imzml/processed_binary_check.ibd
|
355
|
+
- spec/testfiles/mspire/mzml/1_BB7_SIM_478.5.CHECK.ibd
|
356
|
+
- spec/testfiles/mspire/mzml/1_BB7_SIM_478.5.CHECK.imzML
|
355
357
|
- spec/testfiles/mspire/mzml/1_BB7_SIM_478.5.mzML
|
356
358
|
- spec/testfiles/mspire/mzml/j24z.idx_comp.3.mzML
|
357
359
|
- spec/testfiles/mspire/mzml/mspire_simulated.MSn.check.mzML
|
data/README.rdoc
DELETED
@@ -1,24 +0,0 @@
|
|
1
|
-
= mspire
|
2
|
-
|
3
|
-
Tools for working with mass spectrometry data in ruby.
|
4
|
-
|
5
|
-
== Examples
|
6
|
-
|
7
|
-
=== mzml
|
8
|
-
|
9
|
-
require 'ms/mzml'
|
10
|
-
|
11
|
-
MS::Mzml.open("somefile.mzml") do |mzml|
|
12
|
-
spectrum = mzml[0] # the first spectrum ( same as mzml.spectrum(0) )
|
13
|
-
spectrum = mzml["controllerType=0 controllerNumber=1 scan=2"] # query by id string
|
14
|
-
mzml.spectrum_from_scan_num(23) # raises ScanNumbersNotFound or ScanNumbersNotUnique errors if problems
|
15
|
-
end
|
16
|
-
|
17
|
-
require 'ms/mass/aa'
|
18
|
-
|
19
|
-
MS::Mass::AA::MONO['A'] # or access by symbol
|
20
|
-
|
21
|
-
== Copyright
|
22
|
-
|
23
|
-
See LICENSE (MIT)
|
24
|
-
|