You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We need to make changes to the exonic filtering parameters in our Nextflow script to improve clarity and add more flexibility. This involves renaming an existing parameter and adding a new one with higher priority.
Proposed Changes
Rename --no_filter_exonic to --exome_filter
Add a new parameter --bed_filter
Modify the filtering logic to prioritize --bed_filter over --exome_filter
Implementation Details
1. Rename parameter
Change --no_filter_exonic to --exome_filter
Update the logic to check if --exome_filter is true (instead of false)
2. Add new parameter
Add --bed_filter option
This parameter should accept a path to a BED file for custom filtering
3. Modify filtering logic
If --bed_filter is provided, use it for filtering regardless of --exome_filter setting
If --bed_filter is not provided, then check --exome_filter
Update the FILTER_EXONIC process to implement this logic
Code Changes
Update the FILTER_EXONIC process (around line 53) to something like this:
Tasks
Rename --no_filter_exonic to --exome_filter throughout the codebase
Add --bed_filter parameter to the script
Update the `
The text was updated successfully, but these errors were encountered:
please read the entire document carefully, this issue not only asking this but also add additional thing needs to be done. The current version the default parameter no_filter_exonic = false, then I believe it executes a filtering as default, isn't it?
Description
We need to make changes to the exonic filtering parameters in our Nextflow script to improve clarity and add more flexibility. This involves renaming an existing parameter and adding a new one with higher priority.
Proposed Changes
--no_filter_exonic
to--exome_filter
--bed_filter
--bed_filter
over--exome_filter
Implementation Details
1. Rename parameter
--no_filter_exonic
to--exome_filter
--exome_filter
is true (instead of false)2. Add new parameter
--bed_filter
option3. Modify filtering logic
--bed_filter
is provided, use it for filtering regardless of--exome_filter
setting--bed_filter
is not provided, then check--exome_filter
FILTER_EXONIC
process to implement this logicCode Changes
Update the
FILTER_EXONIC
process (around line 53) to something like this:Tasks
--no_filter_exonic
to--exome_filter
throughout the codebase--bed_filter
parameter to the scriptThe text was updated successfully, but these errors were encountered: