ReactionDetails

core.domain.preprocessor.ReactionDetails
See theReactionDetails companion object
case class ReactionDetails(reaction: Reaction, inboundReagents: List[(REAGENT_IN, Molecule)], outboundProducts: List[(PRODUCT_FROM, Molecule)], conditions: List[(ACCELERATE, Catalyst)])

Represents the details of a reaction, including its reagents, products, and conditions.

Value parameters

conditions

A list of tuples containing acceleration conditions (ACCELERATE) and the associated catalyst (Catalyst).

inboundReagents

A list of tuples containing the reagent information (REAGENT_IN) and the associated molecule (Molecule).

outboundProducts

A list of tuples containing the product information (PRODUCT_FROM) and the associated molecule (Molecule).

reaction

The Reaction instance representing the reaction.

Attributes

Companion
object
Source
Process.scala
Graph
Supertypes
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
Show all

Members list

Value members

Inherited methods

def productElementNames: Iterator[String]

Attributes

Inherited from:
Product
def productIterator: Iterator[Any]

Attributes

Inherited from:
Product