Refactor ATAC analysis and update documentation#92
Merged
Merged
Conversation
Refactor binding column cleanup and update ATAC analysis parameters
Merge dependencies_update into main
…llation instructions
…update quickstart guide with NextSeq 2000 notes
…te directories and update file checks
Contributor
Reviewer's GuideThis PR refactors core pipeline scripts to add conditional execution and FASTQ validation, updates the conda environment with numerous dependency bumps, and enhances documentation with setup guidance and asset path corrections. Sequence diagram for ASAP FASTQ validation and separation in run_asap_to_kite.shsequenceDiagram
participant Script as run_asap_to_kite.sh
participant FS as File System
participant User as actor User
Script->>FS: Create ASAP and ATAC FASTQ directories
Script->>FS: Move FASTQ files to respective directories
loop For each ASAP sample
Script->>FS: Check for R1, R2, R3 FASTQ files
alt R3 file missing
Script->>User: Output error and exit
else R3 file present
Script->>Script: Run asap_to_kite_v2.py
end
end
Flow diagram for FASTQ file organization in run_asap_to_kite.shflowchart TD
A[Start] --> B[Create ASAP and ATAC FASTQ directories]
B --> C[For each FASTQ file in main directory]
C --> D{Filename contains ASAP_NAMING_ID?}
D -- Yes --> E[Move to ASAP FASTQ directory]
D -- No --> F{Filename contains ATAC_NAMING_ID?}
F -- Yes --> G[Move to ATAC FASTQ directory]
F -- No --> H[Do nothing]
E --> I[Next file]
G --> I
H --> I
I --> C
C --> J[End]
File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
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.
Enhance the MAPseq pipeline by restructuring scripts for better organization of FASTQ files, adding validation for ASAP FASTQ files, and updating installation instructions for ATAC Azimuth with Seurat and Signac. Additionally, improve the README and environment configuration for clarity.
Summary by Sourcery
Refactor ATAC workflows, update environment dependencies, and improve pipeline documentation
Enhancements:
Build:
Documentation: