Class: ViennaRna::Package::Fold

Inherits:
Base
  • Object
show all
Defined in:
lib/vienna_rna/package/fold.rb

Instance Attribute Summary collapse

Attributes inherited from Base

#data, #flags, #response, #runtime

Instance Method Summary collapse

Methods inherited from Base

bootstrap, #debugger, #initialize, #inspect, #serialize

Methods included from Global::ChainExtensions

included

Methods included from Global::RunExtensions

included

Constructor Details

This class inherits a constructor from ViennaRna::Package::Base

Instance Attribute Details

#ensemble_energyObject (readonly)

Returns the value of attribute ensemble_energy.



8
9
10
# File 'lib/vienna_rna/package/fold.rb', line 8

def ensemble_energy
  @ensemble_energy
end

#mfeObject (readonly)

Returns the value of attribute mfe.



8
9
10
# File 'lib/vienna_rna/package/fold.rb', line 8

def mfe
  @mfe
end

#mfe_rnaObject (readonly)

Returns the value of attribute mfe_rna.



8
9
10
# File 'lib/vienna_rna/package/fold.rb', line 8

def mfe_rna
  @mfe_rna
end

#structureObject (readonly)

Returns the value of attribute structure.



8
9
10
# File 'lib/vienna_rna/package/fold.rb', line 8

def structure
  @structure
end

Instance Method Details

#post_processObject



10
11
12
13
14
15
16
17
18
19
20
21
22
# File 'lib/vienna_rna/package/fold.rb', line 10

def post_process
  structure = ViennaRna::Global::Parser.rnafold_mfe_structure(response)

  unless data.seq.length == structure.length
    raise "Sequence: '#{data.seq}'\nStructure: '#{structure}'"
  else
    @mfe_rna, @structure, @mfe = RNA.from_string(data.seq, structure), structure, ViennaRna::Global::Parser.rnafold_mfe(response)
  end
  
  if flags[:p] == 0
    @ensemble_energy = ViennaRna::Global::Parser.rnafold_ensemble_energy(response)
  end
end