Fix/cap.pdb file lookup when colbuilder is launched outside the working directory - #27
Open
ingcoder wants to merge 2 commits into
Open
Fix/cap.pdb file lookup when colbuilder is launched outside the working directory#27ingcoder wants to merge 2 commits into
ingcoder wants to merge 2 commits into
Conversation
Remap TER-extracted files to sparse system IDs and defer MODELLER-dependent imports for non-sequence runs.
Topology now reads caps from the configured working directory instead of the shell cwd, which removes the need for TER-extraction ID remapping.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
How the bug was discovered
The bug appeared during a combined geometry and topology build of the 67 nm rat glucosepane fibril.
Geometry correctly wrote its cap files under the configured working directory:
rat_glucosepane_67nm_build/.tmp/geometry_gen/D/
However, Colbuilder was launched from /private/tmp. Topology step then searched for .tmp/geometry_gen relative to that shell directory instead:
/private/tmp/.tmp/geometry_gen
It found no caps and incorrectly used the existing fallback that re-extracts models from the fibril PDB. This changed the model numbering and caused topology generation to fail.
Why the fix is necessary
Temporary files should be found using config.working_directory, regardless of where the user launches Colbuilder. Fibril re-extraction should happen only when geometry caps are truly unavailable.
Fix
Use file_manager.geometry_dir and file_manager.mixing_dir to locate caps.
This allows the existing search to set cap_files_found = True and prevents unnecessary fibril re-extraction.
Import MODELLER-dependent sequence code only when sequence generation runs.
Test
Confirmed from a separate temporary launch directory that topology finds and copies the configured geometry caps without calling the fibril-extraction fallback.