msf 0.1.2 → 0.1.3
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 +14 -1
- data/Rakefile +2 -2
- data/VERSION +1 -1
- data/msf.gemspec +3 -3
- metadata +5 -5
data/README.md
CHANGED
|
@@ -20,13 +20,15 @@ operating my version of Thermo's Proteome Discoverer (1.3).
|
|
|
20
20
|
|
|
21
21
|
gem install msf
|
|
22
22
|
|
|
23
|
-
## Usage ##
|
|
23
|
+
## API Usage ##
|
|
24
24
|
|
|
25
25
|
msf = MSF.new({:path => msf_file})
|
|
26
26
|
Peptides.all do |peptide|
|
|
27
27
|
<whatever>
|
|
28
28
|
end
|
|
29
29
|
|
|
30
|
+
## CLI Usage ##
|
|
31
|
+
|
|
30
32
|
ibspectra msf_file >> msf_file/msf_file.ibspectra.csv
|
|
31
33
|
|
|
32
34
|
## Note ##
|
|
@@ -36,16 +38,27 @@ See erd/erd.png for an Entity Relationship Diagram of the MSF schema.
|
|
|
36
38
|
## Contributing to msf ##
|
|
37
39
|
|
|
38
40
|
* Checkout
|
|
41
|
+
|
|
39
42
|
`git clone git@github.com:bioteam/msf.git; cd msf`
|
|
43
|
+
|
|
40
44
|
* Fix bugs, add features
|
|
45
|
+
|
|
41
46
|
`<make changes>`
|
|
47
|
+
|
|
42
48
|
* Test
|
|
49
|
+
|
|
43
50
|
`rspec`
|
|
51
|
+
|
|
44
52
|
* Update version
|
|
53
|
+
|
|
45
54
|
`rake version:bump:patch`
|
|
55
|
+
|
|
46
56
|
* Commit changes
|
|
57
|
+
|
|
47
58
|
`git commit`
|
|
59
|
+
|
|
48
60
|
* Release
|
|
61
|
+
|
|
49
62
|
`rake release`
|
|
50
63
|
|
|
51
64
|
## Copyright ##
|
data/Rakefile
CHANGED
|
@@ -17,8 +17,8 @@ Jeweler::Tasks.new do |gem|
|
|
|
17
17
|
gem.name = "msf"
|
|
18
18
|
gem.homepage = "https://github.com/bioteam/msf"
|
|
19
19
|
gem.license = "MIT"
|
|
20
|
-
gem.summary = "
|
|
21
|
-
gem.description = "
|
|
20
|
+
gem.summary = "An MSF file is sqlite3 dtabase. ActiveRecord is a great ORM for accessing the its data. Much has been taken from Angel Pizarro's thermo_msf."
|
|
21
|
+
gem.description = "Thermo MSF file parser using ActiveRecord as ORM."
|
|
22
22
|
gem.email = "bill@bioteam.net"
|
|
23
23
|
gem.authors = ["William Van Etten"]
|
|
24
24
|
gem.files.include 'bin/ibspectra'
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.1.
|
|
1
|
+
0.1.3
|
data/msf.gemspec
CHANGED
|
@@ -5,12 +5,12 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = "msf"
|
|
8
|
-
s.version = "0.1.
|
|
8
|
+
s.version = "0.1.3"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["William Van Etten"]
|
|
12
12
|
s.date = "2012-11-08"
|
|
13
|
-
s.description = "
|
|
13
|
+
s.description = "Thermo MSF file parser using ActiveRecord as ORM."
|
|
14
14
|
s.email = "bill@bioteam.net"
|
|
15
15
|
s.executables = ["ibspectra"]
|
|
16
16
|
s.extra_rdoc_files = [
|
|
@@ -102,7 +102,7 @@ Gem::Specification.new do |s|
|
|
|
102
102
|
s.licenses = ["MIT"]
|
|
103
103
|
s.require_paths = ["lib"]
|
|
104
104
|
s.rubygems_version = "1.8.24"
|
|
105
|
-
s.summary = "
|
|
105
|
+
s.summary = "An MSF file is sqlite3 dtabase. ActiveRecord is a great ORM for accessing the its data. Much has been taken from Angel Pizarro's thermo_msf."
|
|
106
106
|
|
|
107
107
|
if s.respond_to? :specification_version then
|
|
108
108
|
s.specification_version = 3
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: msf
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.3
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -155,8 +155,7 @@ dependencies:
|
|
|
155
155
|
- - ~>
|
|
156
156
|
- !ruby/object:Gem::Version
|
|
157
157
|
version: 2.2.2
|
|
158
|
-
description:
|
|
159
|
-
the its data. Much has been taken from Angel Pizarro's thermo_msf.
|
|
158
|
+
description: Thermo MSF file parser using ActiveRecord as ORM.
|
|
160
159
|
email: bill@bioteam.net
|
|
161
160
|
executables:
|
|
162
161
|
- ibspectra
|
|
@@ -259,7 +258,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
259
258
|
version: '0'
|
|
260
259
|
segments:
|
|
261
260
|
- 0
|
|
262
|
-
hash:
|
|
261
|
+
hash: -2476262534008812957
|
|
263
262
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
264
263
|
none: false
|
|
265
264
|
requirements:
|
|
@@ -271,5 +270,6 @@ rubyforge_project:
|
|
|
271
270
|
rubygems_version: 1.8.24
|
|
272
271
|
signing_key:
|
|
273
272
|
specification_version: 3
|
|
274
|
-
summary:
|
|
273
|
+
summary: An MSF file is sqlite3 dtabase. ActiveRecord is a great ORM for accessing
|
|
274
|
+
the its data. Much has been taken from Angel Pizarro's thermo_msf.
|
|
275
275
|
test_files: []
|