changes for workshop so that the network can be analysed #26
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Hello! For the September CCPBioSim BSS workshop, when using freenrgworkflows as is, it is not able to analyse the provided network for the following results files (results_X.csv).

The following warning shows up:
Provided network is disconnected. Doing analysis on subgraph.However, the network should have enough edges I think.
As a result of this, after the first file is added, once the second set of data is added using the following code:
the following error shows up:
I realised this is because the edge for this ligand does not exist, as when the first file was loaded it used largest:
when analysis was carried out for the node in largest, only about four edges were added to the network in
self._ddG_edges.Changing this to:
as has been done for the copy of freenergworkflows in the workshop allows full analysis for all edges to be carried out.
I was wondering if in this case only doing analysis for the largest connected set of nodes is robust to be able to handle when networks such as this one are passed in?