Class: Bio::GFFbrowser::Digest::NoCacheHelpers::SeekLinkedRecs
- Inherits:
-
Hash
- Object
- Hash
- Bio::GFFbrowser::Digest::NoCacheHelpers::SeekLinkedRecs
- Includes:
- Helpers::Logger
- Defined in:
- lib/bio/db/gff/digest/gffnocache.rb
Overview
List of ids
Instance Method Summary collapse
- #add(id, rec) ⇒ Object
-
#validate_nonoverlapping ⇒ Object
validation is switched off for NoCache.
-
#validate_seqname ⇒ Object
validation is switched off for NoCache.
-
#validate_shared_parent ⇒ Object
validation is switched off for NoCache.
Methods included from Helpers::Logger
#debug, #error, #info, #log_sys_info, #warn
Instance Method Details
#add(id, rec) ⇒ Object
65 66 67 68 69 70 |
# File 'lib/bio/db/gff/digest/gffnocache.rb', line 65 def add id, rec info "Adding #{rec.feature_type} (nocache)",id raise "ID should not be empty" if id == nil or id == "" self[id] = [] if self[id] == nil self[id] << rec.io_seek end |
#validate_nonoverlapping ⇒ Object
validation is switched off for NoCache
75 76 |
# File 'lib/bio/db/gff/digest/gffnocache.rb', line 75 def validate_nonoverlapping end |
#validate_seqname ⇒ Object
validation is switched off for NoCache
72 73 |
# File 'lib/bio/db/gff/digest/gffnocache.rb', line 72 def validate_seqname end |
#validate_shared_parent ⇒ Object
validation is switched off for NoCache
78 79 |
# File 'lib/bio/db/gff/digest/gffnocache.rb', line 78 def validate_shared_parent end |