mspire 0.2.0 → 0.2.1

Sign up to get free protection for your applications and to get access to all the features.
data/INSTALL CHANGED
@@ -20,11 +20,14 @@ or
20
20
  Development
21
21
  -----------
22
22
 
23
- prereq: [rant](http://make.rubyforge.org/) (with rubygems: 'gem install rant')
24
-
25
- % rant -T
26
- rant test # Run all tests
27
- rant doc # Generate html documentation.
28
- rant package # Create packages.
29
- rant reinstall # uninstalls the package, packages a fresh one, and installs
30
- rant clean # Remove autogenerated and backup files.
23
+ prereq: [rake](http://rake.rubyforge.org/) (with rubygems: 'gem install rake --remote')
24
+
25
+ % rake -T
26
+ rake clean # Remove any temporary products.
27
+ rake html_docs # creates docs in doc/html
28
+ rake package # Build all the packages
29
+ rake test # Run tests
30
+ rake test_ind # Run unit tests individual on each test
31
+ rake upload_docs # create and upload docs to server
32
+ ...etc...
33
+
data/Rakefile CHANGED
@@ -58,7 +58,7 @@ end
58
58
 
59
59
  desc "create and upload docs to server"
60
60
  task :upload_docs => :html_docs do
61
- sh "scp -i ~/.ssh/id_dsa_rubyforge -r doc/output/* jtprince@rubyforge.org:/var/www/gforge-projects/mspire/"
61
+ sh "scp -i ~/.ssh/rubyforge_key -r doc/output/* jtprince@rubyforge.org:/var/www/gforge-projects/mspire/"
62
62
  end
63
63
 
64
64
  desc "creates docs in doc/html"
@@ -140,7 +140,7 @@ tm = Time.now
140
140
  spec = Gem::Specification.new do |s|
141
141
  s.platform = Gem::Platform::RUBY
142
142
  s.name = NAME
143
- s.version = "0.2.0"
143
+ s.version = "0.2.1"
144
144
  s.summary = "Mass Spectrometry Proteomics Objects, Scripts, and Executables"
145
145
  s.date = "#{tm.year}-#{tm.month}-#{tm.day}"
146
146
  s.email = "jprince@icmb.utexas.edu"
@@ -153,7 +153,7 @@ spec = Gem::Specification.new do |s|
153
153
  s.rdoc_options = rdoc_options
154
154
  s.extra_rdoc_files = rdoc_extra_includes
155
155
  s.executables = FL["bin/*"].map {|file| File.basename(file) }
156
- s.add_dependency('libjtp', '~> 0.1.2')
156
+ s.add_dependency('libjtp', '~> 0.1.4')
157
157
  s.requirements << '"xmlparser" is the prefered xml parser right now. REXML and regular expressions are used as fallback in some routines.'
158
158
  s.requirements << 'some plotting functions will not be available without the "gnuplot" gem (and underlying gnuplot binary)'
159
159
  s.requirements << 'the "t2x" binary (in archive) or readw.exe is required to convert .RAW files to mzXML in some applications'
data/changelog.txt CHANGED
@@ -35,7 +35,8 @@ this in a future release.
35
35
 
36
36
  ## version 0.2.0
37
37
 
38
- ** This is a definite code breaker **
39
- Revamped the way SpecID works (it is now subclassed). Since I want to return
40
- the specific object that the file specifies, I use 'create' now instead of
41
- 'new' (which forces one to return *that* class.
38
+ Revamped the way SpecID works (it is now mixed-in).
39
+ Added support for modifications to bioworks_to_pepxml.rb
40
+ Can read .srf files (nearly interchangeable with bioworks files)
41
+ Redid filter.rb
42
+
data/lib/spec_id/proph.rb CHANGED
@@ -5,6 +5,11 @@ require 'instance_var_set_from_hash'
5
5
  require 'axml'
6
6
  require 'spec_id'
7
7
 
8
+
9
+ module SpecID ; end
10
+ module SpecID::Prot ; end
11
+ module SpecID::Pep ; end
12
+
8
13
  class Proph
9
14
 
10
15
 
data/release_notes.txt CHANGED
@@ -1,11 +1,2 @@
1
1
 
2
- Note two potentially significant bugs in the software corrected (see the
3
- changelog). I haven't finished modifying the tests to reflect these changes,
4
- but I wanted to get the faulty software off the top of the stack. A new
5
- release will shortly follow that passes all tests. Use this release only as a
6
- correction to the previous.
7
2
 
8
- tests currently failing:
9
- gi
10
- spec_id
11
- id_precision
metadata CHANGED
@@ -3,8 +3,8 @@ rubygems_version: 0.9.2
3
3
  specification_version: 1
4
4
  name: mspire
5
5
  version: !ruby/object:Gem::Version
6
- version: 0.2.0
7
- date: 2007-04-25 00:00:00 -05:00
6
+ version: 0.2.1
7
+ date: 2007-04-30 00:00:00 -05:00
8
8
  summary: Mass Spectrometry Proteomics Objects, Scripts, and Executables
9
9
  require_paths:
10
10
  - lib
@@ -29,32 +29,32 @@ post_install_message:
29
29
  authors:
30
30
  - John Prince
31
31
  files:
32
- - lib/spec_id.rb
33
- - lib/align
34
- - lib/spec_id_xml.rb
35
32
  - lib/spec_id
36
- - lib/toppred.rb
37
- - lib/align.rb
33
+ - lib/align
38
34
  - lib/spec
35
+ - lib/spec_id.rb
39
36
  - lib/fasta.rb
37
+ - lib/align.rb
38
+ - lib/sample_enzyme.rb
40
39
  - lib/gi.rb
41
40
  - lib/roc.rb
42
- - lib/sample_enzyme.rb
43
- - lib/align/chams.rb
41
+ - lib/spec_id_xml.rb
42
+ - lib/toppred.rb
44
43
  - lib/spec_id/sequest.rb
45
- - lib/spec_id/filter.rb
46
44
  - lib/spec_id/bioworks.rb
47
- - lib/spec_id/srf.rb
45
+ - lib/spec_id/proph.rb
48
46
  - lib/spec_id/precision.rb
49
- - lib/spec_id/protein_summary.rb
47
+ - lib/spec_id/srf.rb
50
48
  - lib/spec_id/aa_freqs.rb
51
- - lib/spec_id/proph.rb
52
- - lib/spec/msrun.rb
53
- - lib/spec/scan.rb
49
+ - lib/spec_id/protein_summary.rb
50
+ - lib/spec_id/filter.rb
51
+ - lib/align/chams.rb
54
52
  - lib/spec/mzxml
55
- - lib/spec/mzdata.rb
56
53
  - lib/spec/mzdata
54
+ - lib/spec/msrun.rb
55
+ - lib/spec/scan.rb
57
56
  - lib/spec/mzxml.rb
57
+ - lib/spec/mzdata.rb
58
58
  - lib/spec/mzxml/parser.rb
59
59
  - lib/spec/mzdata/parser.rb
60
60
  - INSTALL
@@ -63,62 +63,62 @@ files:
63
63
  - LICENSE
64
64
  - changelog.txt
65
65
  - release_notes.txt
66
+ - bin/gi2annot.rb
67
+ - bin/protein_summary.rb
66
68
  - bin/bioworks2sequestXML_gui.rb
67
- - bin/srf_group.rb
69
+ - bin/bioworks2excel.rb
68
70
  - bin/pepproph_filter.rb
69
- - bin/filter.rb
71
+ - bin/fasta_shaker.rb
72
+ - bin/bioworks_to_pepxml.rb
70
73
  - bin/protxml2prots_peps.rb
71
- - bin/raw_to_mzXML.rb
72
- - bin/gi2annot.rb
73
- - bin/id_class_anal.rb
74
- - bin/precision.rb
75
74
  - bin/id_precision.rb
76
- - bin/protein_summary.rb
77
- - bin/bioworks_to_pepxml.rb
78
- - bin/bioworks2excel.rb
75
+ - bin/id_class_anal.rb
79
76
  - bin/mzxml_to_lmat.rb
80
- - bin/fasta_shaker.rb
81
77
  - bin/find_aa_freq.rb
82
- - script/prep_dir.rb
83
- - script/degenerate_peptides.rb
84
- - script/histogram_probs.rb
85
- - script/simple_protein_digestion.rb
86
- - script/top_hit_per_scan.rb
87
- - script/msvis.rb
78
+ - bin/filter.rb
79
+ - bin/srf_group.rb
80
+ - bin/precision.rb
81
+ - bin/raw_to_mzXML.rb
82
+ - script/create_little_pepxml.rb
88
83
  - script/mzXML2timeIndex.rb
89
84
  - script/tpp_installer.rb
85
+ - script/msvis.rb
86
+ - script/histogram_probs.rb
87
+ - script/prep_dir.rb
88
+ - script/top_hit_per_scan.rb
90
89
  - script/filter-peps.rb
91
- - script/estimate_fpr_by_cysteine.rb
92
90
  - script/genuine_tps_and_probs.rb
93
- - script/create_little_pepxml.rb
91
+ - script/simple_protein_digestion.rb
92
+ - script/estimate_fpr_by_cysteine.rb
94
93
  - script/find_cysteine_background.rb
94
+ - script/degenerate_peptides.rb
95
95
  test_files:
96
- - test/tc_spec_id_xml.rb
97
- - test/tc_mzxml_to_lmat.rb
98
- - test/tc_id_class_anal.rb
96
+ - test/tc_aa_freqs.rb
97
+ - test/tc_proph.rb
99
98
  - test/tc_gi.rb
99
+ - test/tc_align.rb
100
+ - test/tc_sequest.rb
101
+ - test/tc_spec.rb
102
+ - test/tc_bioworks.rb
103
+ - test/tc_protein_summary.rb
100
104
  - test/tc_fasta.rb
105
+ - test/tc_msrun.rb
101
106
  - test/tc_peptide_parent_times.rb
102
107
  - test/tc_spec_id.rb
103
- - test/tc_roc.rb
104
108
  - test/tc_mzxml.rb
105
- - test/tc_sample_enzyme.rb
106
109
  - test/tc_srf.rb
107
- - test/tc_bioworks.rb
108
- - test/tc_spec.rb
109
- - test/tc_bioworks_to_pepxml.rb
110
- - test/tc_scan.rb
111
- - test/tc_sequest.rb
112
- - test/tc_fasta_shaker.rb
113
110
  - test/tc_id_precision.rb
114
- - test/tc_msrun.rb
115
- - test/tc_protein_summary.rb
111
+ - test/tc_id_class_anal.rb
116
112
  - test/tc_filter_peps.rb
117
- - test/tc_filter.rb
118
- - test/tc_aa_freqs.rb
119
- - test/tc_proph.rb
120
- - test/tc_align.rb
121
113
  - test/tc_precision.rb
114
+ - test/tc_filter.rb
115
+ - test/tc_roc.rb
116
+ - test/tc_scan.rb
117
+ - test/tc_bioworks_to_pepxml.rb
118
+ - test/tc_mzxml_to_lmat.rb
119
+ - test/tc_fasta_shaker.rb
120
+ - test/tc_sample_enzyme.rb
121
+ - test/tc_spec_id_xml.rb
122
122
  rdoc_options:
123
123
  - --main
124
124
  - README
@@ -129,22 +129,22 @@ extra_rdoc_files:
129
129
  - INSTALL
130
130
  - LICENSE
131
131
  executables:
132
+ - gi2annot.rb
133
+ - protein_summary.rb
132
134
  - bioworks2sequestXML_gui.rb
133
- - srf_group.rb
135
+ - bioworks2excel.rb
134
136
  - pepproph_filter.rb
135
- - filter.rb
137
+ - fasta_shaker.rb
138
+ - bioworks_to_pepxml.rb
136
139
  - protxml2prots_peps.rb
137
- - raw_to_mzXML.rb
138
- - gi2annot.rb
139
- - id_class_anal.rb
140
- - precision.rb
141
140
  - id_precision.rb
142
- - protein_summary.rb
143
- - bioworks_to_pepxml.rb
144
- - bioworks2excel.rb
141
+ - id_class_anal.rb
145
142
  - mzxml_to_lmat.rb
146
- - fasta_shaker.rb
147
143
  - find_aa_freq.rb
144
+ - filter.rb
145
+ - srf_group.rb
146
+ - precision.rb
147
+ - raw_to_mzXML.rb
148
148
  extensions: []
149
149
 
150
150
  requirements:
@@ -161,5 +161,5 @@ dependencies:
161
161
  requirements:
162
162
  - - ~>
163
163
  - !ruby/object:Gem::Version
164
- version: 0.1.2
164
+ version: 0.1.4
165
165
  version: