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.
This PR corrects DisVis tutorial regarding the swapping of the structure names (PRE5 and PUP2). This change does not affect the overall message of the tutorial, but it improves the detailed results.
The problem:
PRE5.pdb
andPUP2.pdb
file names are swapped in the original data.What I did to correct the tutorial:
disvis-tutorial.tgz
file and inspecting the PDB files in detail we see that thePRE5.pdb
contains the sequence of PUP2 (UniProtKB: Q9UT97) andPUP2.pdb
contains the sequence of PRE5 (UniProtKB: O14250).restraints.txt
. I used:pdb_chain -A PRE5.pdb > pre5.pdb
pdb_chain -B PUP2.pdb > pup2.pdb
mv pub2.pdb PUB2.pdb
mv pre5.pdb PRE5.pdb
accessible_interaction_space.mrc
.restraints_filtered.txt
. But maybe we could remove also restraint 9.accessible_res_70.list
5L5A
we can see that the original input structured were really swapped as the original tutorial says5L5A
chainD
corresponds toPRE5
and this is still true even after the PDBs names are changed.If you agree with this, I need help in defining which files go in the
disvis_tutorial.tgz
, namely thesecond_run_with_mrc.py
, and theresults
folder. I haven't investigated yet if this branches to other tutorial pages.