class Bio::GFFbrowser::Digest::NoCacheHelpers::SeekLinkedRecs

List of ids

Public Instance Methods

add(id, rec) click to toggle source
# 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() click to toggle source

validation is switched off for NoCache

# File lib/bio/db/gff/digest/gffnocache.rb, line 75
def validate_nonoverlapping
end
validate_seqname() click to toggle source

validation is switched off for NoCache

# File lib/bio/db/gff/digest/gffnocache.rb, line 72
def validate_seqname
end
validate_shared_parent() click to toggle source

validation is switched off for NoCache

# File lib/bio/db/gff/digest/gffnocache.rb, line 78
def validate_shared_parent
end