You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What steps will reproduce the problem?
1. Write a BNGL model with a dissociation rule that applies to rings and
chains, e.g. molecule types: A(x,y); seed species A(x!0,y!1).A(x!1,y!0) rules:
A(x!0).A(y!0) -> A(x) + A(y).
2. Simulate the model in NFsim (with or without complex bookkeeping)
What is the expected output? What do you see instead?
The rule should not apply to the seed species since breaking one bond will not
result in two distinct complexes. However, NFsim does not check for the
violation of molecularity and the reaction proceeds. This behavior is not in
conformity with BNGL.
This is a low priority issue since there are work-arounds for most models that
require product-side molecularity checks.
Please use labels and text to provide additional information.
Original issue reported on code.google.com by justinshogg on 27 Mar 2013 at 11:10
The text was updated successfully, but these errors were encountered:
…instead of returning different mapping sets with each iteration
Also chabnged compare return type to bool back from pair<bool,bool>. Finally, the updated conmpare method and related functionality
is now used in the basic reaction class. This issue should address most of the remaining problems found in issue #2.
rasi
added a commit
to rasilab/nfsim
that referenced
this issue
Jan 1, 2019
For my polymer neighborhood search, I was previously looking at only the
molecule components that got changed by a transformation. This results
in searching of only polymer neighborhoods of the changed component, but
not other unchanged components which might nevertheless be constrained
by the reaction rule.
So I now look at all molecule components that are constrained as well.
This is done by looking at the template molecule corresponding to the
transformation reactant.
Alter search to only polymeric constrained comps and
Search neighborhood of only bonded polymeric comps
Trying to speed up the polymer search but not very useful
This is the commit message msneddon#2:
This is done to avoid slow searching of all specified components
of all molecules.
Original issue reported on code.google.com by
justinshogg
on 27 Mar 2013 at 11:10The text was updated successfully, but these errors were encountered: