We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When you calculate the net flux you have to calculate the forward flux for each edge, and throw out the edges that have negative flux. When you do this (https://github.com/brycecr/msmexplorer/blob/master/MSMExplorer/src/edu/stanford/folding/msmexplorer/tpt/TPTFactoryCM.java#L302-L310) you have fFlux that contains the total flux along each edge, but you are modifying it on the fly to compute the net flux.
The problem with doing this, is when you modify fFlux(i, j), now the net flux on edge (j, i) will be calculated incorrectly.
The text was updated successfully, but these errors were encountered:
suggested fix to net_flux problem raised in issue brycecr#56
9326abc
fix to issue brycecr#56
c91df94
Merge pull request #3 from schwancr/flux_fix
cada12a
No branches or pull requests
When you calculate the net flux you have to calculate the forward flux for each edge, and throw out the edges that have negative flux. When you do this (https://github.com/brycecr/msmexplorer/blob/master/MSMExplorer/src/edu/stanford/folding/msmexplorer/tpt/TPTFactoryCM.java#L302-L310) you have fFlux that contains the total flux along each edge, but you are modifying it on the fly to compute the net flux.
The problem with doing this, is when you modify fFlux(i, j), now the net flux on edge (j, i) will be calculated incorrectly.
The text was updated successfully, but these errors were encountered: