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
Reactioninstance representing the reaction. 
Attributes
- Companion
 - object
 - Source
 - Process.scala
 - Graph
 - 
    
 - Supertypes
 - 
    trait Serializabletrait Producttrait Equalsclass Objecttrait Matchableclass Any
 
Members list
In this article