Add post-pipeline analysis API and enhance SeqNadoProject for multiomics#410
Open
alsmith151 wants to merge 6 commits into
Open
Add post-pipeline analysis API and enhance SeqNadoProject for multiomics#410alsmith151 wants to merge 6 commits into
alsmith151 wants to merge 6 commits into
Conversation
- Updated fake_project fixture to create sample BED files with content instead of empty files. - Added unit tests for enum methods related to bigWigs and peaks. - Implemented tests for various discovery helpers including pileup methods, scales, and peak methods. - Created tests for loading peaks, alignment stats, and benchmarks with fake data. - Added tests for filtering projects based on conditions and antibodies. - Enhanced summary tests to check for detailed output and presence of files.
…iProject for multiomics support
…fig discovery and new properties for samples, conditions, antibodies, and groups
…updates and setter method
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.
This pull request introduces the new Python Analysis API to the project, making it accessible both in the codebase and in the documentation. The main changes include exposing the analysis API's main classes and functions at the top level and updating the documentation to reflect the new API.
API exposure and import changes:
SeqNadoProject,SeqNadoMultiProject, andopen_projectfrom theanalysismodule at the package level inseqnado/__init__.py, making them accessible to users as top-level imports. [1] [2]analysismodule to the package-level imports inseqnado/__init__.py. [1] [2]__all__declaration inseqnado/analysis/__init__.pyto specify the public API of the analysis module.Documentation updates:
docs/SUMMARY.md, making it discoverable for users.