The SOP Review Workflow
How should an SOP change move from idea to official procedure?
Instead of editing the main branch directly, follow a structured workflow.
Proposed Workflow
Section titled “Proposed Workflow”-
Create a branch for the modification:
Terminal window git checkout -b improve-dna-lysis-step -
Edit the SOP in Markdown.
-
Commit changes with explanation:
Terminal window git commit -m "Increase lysis time to improve yield" -
Push the branch to the remote repository:
Terminal window git push -
Open a pull request for review.
Why Not Edit the Main Branch?
Section titled “Why Not Edit the Main Branch?”The main branch represents validated procedures.
Direct modification can:
- Introduce un-reviewed errors
- Reduce trust in official protocols
- Create confusion about approval status
Branching separates experimentation from validation.