001package org.biopax.paxtools.model.level3;
002
003
004/**
005 * <b>Definition:</b> A conversion interaction in which a set of physical entities, at least one being a macromolecule (e.g.
006 * protein, RNA, DNA), aggregate to from a complex physicalEntity. One of the participants of a complexAssembly must be
007 * an instance of the class Complex. The modification of the physicalentities involved in the ComplexAssembly is
008 * captured via BindingFeature class.
009 *
010 * <b>Usage:</b> This class is also used to represent complex disassembly. The assembly or disassembly of a complex is often a
011 * spontaneous process, in which case the direction of the complexAssembly (toward either assembly or disassembly)
012 * should be specified via the SPONTANEOUS property. Conversions in which participants obtain or lose
013 * CovalentBindingFeatures ( e.g. glycolysation of proteins) should be modeled with BiochemicalReaction.
014 *
015 * <b>Synonyms:</b> aggregation, complex formation
016 *
017 * <b>Examples:</b> Assembly of the TFB2 and TFB3 proteins into the TFIIH complex, and assembly of the ribosome through
018 * aggregation of its subunits.
019 */
020public interface ComplexAssembly extends Conversion
021{
022}