-
Notifications
You must be signed in to change notification settings - Fork 3
New release 2.0.0 including dda workflow for quantmsdiann #36
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Draft
ypriverol
wants to merge
32
commits into
main
Choose a base branch
from
dev
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from all commits
Commits
Show all changes
32 commits
Select commit
Hold shift + click to select a range
e2b2ac7
docs: add v1.0.0 release implementation plan
ypriverol 7d4a441
fix: add pipefail to all modules with tee pipes
ypriverol 853dbbf
fix: add error_retry label to all DIA-NN analysis modules
ypriverol d85847e
fix: add empty input guards to prevent silent pipeline hangs
ypriverol f2a6777
feat: add DIA-NN 2.3.2 version config and profile
ypriverol 14ed748
feat: add DDA support via --diann_dda flag (#5)
ypriverol 7f51d00
test: add DDA and skip_preanalysis test configs
ypriverol a13d4b3
feat: add --light-models, --export-quant, --site-ms1-quant params (#7)
ypriverol 0c56dcb
feat: add InfinDIA groundwork — enable_infin_dia param (#10)
ypriverol e69d7f2
docs: add comprehensive parameter reference (#1)
ypriverol 52fa59f
docs: complete usage.md, output.md, citations, README (#1, #3, #9, #15)
ypriverol 21fc10c
style: apply prettier formatting to parameters.md
ypriverol 2cb7740
chore: remove internal planning doc to resolve merge conflict
ypriverol 046c7a1
fix: address PR #32 review comments
ypriverol 1a3610a
fix: critical DDA bugs — missing version param and channel routing
ypriverol 7a20d7d
fix: make --no-ifs-removal and --no-main-report version-conditional
ypriverol 1a929ae
docs: update Zenodo DOI to 10.5281/zenodo.19437128
ypriverol 7fcb20e
Merge remote-tracking branch 'origin/main' into dev
ypriverol bd80512
fix: remove tdf2mzml module and references from documentation
ypriverol 66ece26
chore: bump version to 1.0.1dev for next release cycle
ypriverol a079ca3
Merge dev into dda and add DDA CI test with PXD022287 dataset
ypriverol 1dd2786
style: fix prettier formatting in parameters.md
ypriverol 9d9d444
fix: add GHCR login to CI for test_dda private container
ypriverol 5f716f6
fix: remove plan docs, add semantic version comparison utility
ypriverol 7df29e2
chore: bump version to 2.0.0dev for DDA support release
ypriverol a3f4e25
fix: standardize meta.yml naming, fix descriptions and minor issues
ypriverol fc96eeb
feat: auto-detect DDA mode from SDRF acquisition method column
ypriverol 9f4ee58
fix: address Copilot review comments
ypriverol a94c1de
Merge pull request #32 from bigbio/dda
ypriverol f04e754
Support multiplexing
yueqixuan af50567
Support multiplexing
yueqixuan 207b6b6
Merge pull request #37 from yueqixuan/dev
ypriverol File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -21,3 +21,4 @@ null/ | |
| .codacy/ | ||
| .github/instructions/codacy.instructions.md | ||
| docs/superpowers/ | ||
| docs/plans/ | ||
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
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
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,14 @@ | ||
| /* | ||
| * DIA-NN 2.3.2 container override (private ghcr.io) | ||
| * Latest release with DDA support and InfinDIA. | ||
| */ | ||
| params.diann_version = '2.3.2' | ||
|
|
||
| process { | ||
| withLabel: diann { | ||
| container = 'ghcr.io/bigbio/diann:2.3.2' | ||
| } | ||
| } | ||
|
|
||
| singularity.enabled = false | ||
| docker.enabled = true |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,53 @@ | ||
| /* | ||
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
| Nextflow config file for testing DDA analysis (requires DIA-NN >= 2.3.2) | ||
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
| Tests DDA mode using the PXD022287 HeLa dataset with --diann_dda flag. | ||
| Uses ghcr.io/bigbio/diann:2.3.2. | ||
|
|
||
| Use as follows: | ||
| nextflow run bigbio/quantmsdiann -profile test_dda,docker [--outdir <OUTDIR>] | ||
|
|
||
| ------------------------------------------------------------------------------------------------ | ||
| */ | ||
|
|
||
| process { | ||
| resourceLimits = [ | ||
| cpus: 4, | ||
| memory: '12.GB', | ||
| time: '48.h' | ||
| ] | ||
| } | ||
|
|
||
| params { | ||
| config_profile_name = 'Test profile for DDA analysis' | ||
| config_profile_description = 'DDA test using PXD022287 HeLa dataset with DIA-NN 2.3.2.' | ||
|
|
||
| outdir = './results_dda' | ||
|
|
||
| // Input data - PXD022287 HeLa DDA dataset | ||
| input = 'https://raw.githubusercontent.com/bigbio/quantms-test-datasets/quantms/testdata/diann_dda_ci/PXD022287.sdrf.tsv' | ||
| database = 'https://raw.githubusercontent.com/bigbio/quantms-test-datasets/quantms/testdata/diann_dda_ci/PXD022287_subset_human.fasta' | ||
|
|
||
| // DDA mode | ||
| diann_dda = true | ||
| diann_version = '2.3.2' | ||
|
|
||
| // Search parameters matching PXD022287 HeLa dataset | ||
| min_peptide_length = 7 | ||
| max_peptide_length = 30 | ||
| max_precursor_charge = 3 | ||
| allowed_missed_cleavages = 1 | ||
| diann_normalize = false | ||
| publish_dir_mode = 'symlink' | ||
| max_mods = 2 | ||
| } | ||
|
|
||
| process { | ||
| withLabel: diann { | ||
| container = 'ghcr.io/bigbio/diann:2.3.2' | ||
| } | ||
| } | ||
|
|
||
| singularity.enabled = false | ||
| docker.enabled = true | ||
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,48 @@ | ||
| /* | ||
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
| Nextflow config file for testing skip_preliminary_analysis path | ||
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
| Tests the pipeline with skip_preliminary_analysis=true, using default | ||
| mass accuracy parameters. Validates the untested code path in dia.nf. | ||
|
|
||
| Use as follows: | ||
| nextflow run bigbio/quantmsdiann -profile test_dia_skip_preanalysis,docker [--outdir <OUTDIR>] | ||
|
|
||
| ------------------------------------------------------------------------------------------------ | ||
| */ | ||
|
|
||
| process { | ||
| resourceLimits = [ | ||
| cpus: 4, | ||
| memory: '12.GB', | ||
| time: '48.h' | ||
| ] | ||
| } | ||
|
|
||
| params { | ||
| config_profile_name = 'Test profile for skip preliminary analysis' | ||
| config_profile_description = 'Tests skip_preliminary_analysis path with default mass accuracy params.' | ||
|
|
||
| outdir = './results_skip_preanalysis' | ||
|
|
||
| // Input data - same as test_dia | ||
| input = 'https://raw.githubusercontent.com/bigbio/quantms-test-datasets/quantms/testdata/dia_ci/PXD026600.sdrf.tsv' | ||
| database = 'https://raw.githubusercontent.com/bigbio/quantms-test-datasets/quantms/testdata/dia_ci/REF_EColi_K12_UPS1_combined.fasta' | ||
| min_pr_mz = 350 | ||
| max_pr_mz = 950 | ||
| min_fr_mz = 500 | ||
| max_fr_mz = 1500 | ||
| min_peptide_length = 15 | ||
| max_peptide_length = 30 | ||
| max_precursor_charge = 3 | ||
| allowed_missed_cleavages = 1 | ||
| diann_normalize = false | ||
| publish_dir_mode = 'symlink' | ||
| max_mods = 2 | ||
|
|
||
| // Skip preliminary analysis - use default mass accuracy params | ||
| skip_preliminary_analysis = true | ||
| mass_acc_ms2 = 15 | ||
| mass_acc_ms1 = 15 | ||
| scan_window = 8 | ||
| } |
Oops, something went wrong.
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
conf/tests/test_dda.configbreaks the current test-profile contract.This introduces a DDA profile under
conf/testsand exposes it astest_dda, but this directory/naming scheme is currently reserved for DIA-only profiles. If DDA is now meant to be first-class here, the repository convention should be updated in the same PR; otherwise this profile should move or be renamed.As per coding guidelines,
conf/tests/*.configtest profiles are DIA-only, and based on learnings new feature profiles should followtest_dia_<feature_name>.Also applies to: 22-34
🤖 Prompt for AI Agents