-
Notifications
You must be signed in to change notification settings - Fork 494
Add Qualifilter Galaxy wrapper #7507
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
Add Qualifilter Galaxy wrapper #7507
Conversation
bgruening
left a comment
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.
Cool @buhlentozini. Very good quality, just some nitpicks :)
tools/qualifilter/qualifilter.xml
Outdated
| <option value="Unclassified_reads">Unclassified reads</option> | ||
| </param> | ||
|
|
||
| <param name="total_reads" type="float" value="1000000" label="Minimum total reads" /> |
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.
can we add min/max to those parameters to help guide users?
| <param name="contam_max" type="float" value="5" label="Maximum contamination %" /> | ||
| <param name="round" type="integer" value="2" label="Rounding precision" /> | ||
|
|
||
| <param name="config" type="data" format="yaml" optional="true" |
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.
this file should be described somewhere in more detail I think
tools/qualifilter/qualifilter.xml
Outdated
| @@ -0,0 +1,143 @@ | |||
| <tool id="qualifilter" name="QualiFilter" version="@TOOL_VERSION@@VERSION_SUFFIX@" profile="21.05"> | |||
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.
| <tool id="qualifilter" name="QualiFilter" version="@TOOL_VERSION@@VERSION_SUFFIX@" profile="21.05"> | |
| <tool id="qualifilter" name="QualiFilter" version="@TOOL_VERSION@@VERSION_SUFFIX@" profile="@PROFILE@"> |
@Profile@ Token could also be introduced in the macros.xml. You can assign profile 25.0 is you like.
Co-authored-by: Björn Grüning <bjoern@gruenings.eu>
Co-authored-by: Björn Grüning <bjoern@gruenings.eu>
Co-authored-by: Björn Grüning <bjoern@gruenings.eu>
Co-authored-by: Björn Grüning <bjoern@gruenings.eu>
Co-authored-by: Björn Grüning <bjoern@gruenings.eu>
Co-authored-by: Saim Momin <64724322+SaimMomin12@users.noreply.github.com>
Co-authored-by: Saim Momin <64724322+SaimMomin12@users.noreply.github.com>
tools/qualifilter/qualifilter.xml
Outdated
| <param name="round" value="2" /> | ||
| <param name="derive_reads" value="true" /> | ||
| <output name="qc_matrix_tsv" file="QC_matrix.tsv"/> | ||
| <output name="qc_matrix_csv" file="QC_matrix.csv"/> |
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.
The log output is missing in the test. Hence the tests are failing
Co-authored-by: Saim Momin <64724322+SaimMomin12@users.noreply.github.com>
Co-authored-by: Björn Grüning <bjoern@gruenings.eu>
|
Thanks @buhlentozini for your contribution! |
|
Deployment status: success https://github.com/galaxyproject/tools-iuc/actions/runs/20234628544 |
Title: Add Qualifilter (QC Matrix Extractor, Bioconda-packaged)
Description:
This PR adds Qualifilter, a tool for parsing MultiQC tabular output and generating a summarized QC matrix with key sequencing and mapping metrics such as total reads, coverage, GC content, and contamination. The tool evaluates user-defined QC thresholds and reports Pass/Fail status for each sample.
Key features:
Testing:
The tool has passed Planemo lint and Planemo test locally.
Notes:
This PR supersedes #7456
, which was closed because the tool was renamed and moved to a separate repository: Qualifilter GitHub repo
.