Sha256: 18d3b4c5ee403324428dff8e83a53a90c2e24462ef9a69b85a9249b07942bf84

Contents?: true

Size: 1.28 KB

Versions: 6

Compression:

Stored size: 1.28 KB

Contents

require_relative '../../version1_0'
require_relative '../../relationship'

module BELParser
  module Language
    module Version1_0
      module Relationships
        # ReactantIn:  +A reactantIn reaction(reactants(A), products(B))+ -  This relationship links abundance terms from the +reactants(<list>)+ in a reaction to the reaction. This is a direct relationship because it is a _self_ relationship. Reactants are consumed directly by a reaction. This relationship is introduced by the BEL Compiler and may not be used by statements in BEL documents.
        class ReactantIn
          extend Relationship

          SHORT       = :reactantIn
          LONG        = :reactantIn
          DESCRIPTION = ' +A reactantIn reaction(reactants(A), products(B))+ -  This relationship links abundance terms from the +reactants(<list>)+ in a reaction to the reaction. This is a direct relationship because it is a _self_ relationship. Reactants are consumed directly by a reaction. This relationship is introduced by the BEL Compiler and may not be used by statements in BEL documents.'.freeze

          def self.short
            SHORT
          end

          def self.long
            LONG
          end

          def self.description
            DESCRIPTION
          end
        end
      end
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
bel_parser-1.0.0.alpha.7 lib/bel_parser/language/version1_0/relationships/reactant_in.rb
bel_parser-1.0.0.alpha.6 lib/bel_parser/language/version1_0/relationships/reactant_in.rb
bel_parser-1.0.0.alpha.5 lib/bel_parser/language/version1_0/relationships/reactant_in.rb
bel_parser-1.0.0.alpha.4 lib/bel_parser/language/version1_0/relationships/reactant_in.rb
bel_parser-1.0.0.alpha.3 lib/bel_parser/language/version1_0/relationships/reactant_in.rb
bel_parser-1.0.0.alpha.2 lib/bel_parser/language/version1_0/relationships/reactant_in.rb