bio-wolf_psort_wrapper 0.0.1 → 0.0.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/VERSION CHANGED
@@ -1 +1 @@
1
- 0.0.1
1
+ 0.0.3
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = "bio-wolf_psort_wrapper"
8
- s.version = "0.0.1"
8
+ s.version = "0.0.3"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Ben J Woodcroft"]
@@ -45,6 +45,13 @@ module Bio
45
45
  'plant',
46
46
  'fungi'
47
47
  ]
48
+ # Locations for each lineage were taken from Table 1 of:
49
+ # Paul Horton, Keun-Joon Park, Takeshi Obayashi & Kenta Nakai,
50
+ # "Protein Subcellular Localization Prediction with WoLF PSORT",
51
+ # Proceedings of the 4th Annual Asia Pacific Bioinformatics Conference APBC06, Taipei, Taiwan. pp. 39-48, 2006.)
52
+ ANIMAL_LOCATIONS = LOCATIONS.reject{|l| l=='chlo'}
53
+ FUNGI_LOCATIONS = LOCATIONS.reject{|l| l=='chlo' or l=='lyso'}
54
+ PLANT_LOCATIONS = LOCATIONS.reject{|l| l=='lyso'}
48
55
 
49
56
  class Report
50
57
  # Name of the sequence that has been analyzed, according
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bio-wolf_psort_wrapper
3
3
  version: !ruby/object:Gem::Version
4
- hash: 29
4
+ hash: 25
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 0
9
- - 1
10
- version: 0.0.1
9
+ - 3
10
+ version: 0.0.3
11
11
  platform: ruby
12
12
  authors:
13
13
  - Ben J Woodcroft