-
Notifications
You must be signed in to change notification settings - Fork 828
Fix --gtf_extra_attributes to support multiple comma-separated values
#1635
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
Conversation
This PR is against the
|
- Update custom/tx2gene module to parse comma-separated extra attributes - Fix deprecated parameter name in docs (`--gtf_group_features_type` → `--featurecounts_group_type`) Fixes #1626 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
01f696f to
de36ea4
Compare
|
Summary
Fixes #1626
This PR addresses two issues reported:
Primary fix: The
--gtf_extra_attributesparameter now correctly supports multiple comma-separated values (e.g.,--gtf_extra_attributes gene_name,gene_type). Previously, only single values worked.Secondary fix: Corrected deprecated parameter name in documentation (
--gtf_group_features_type→--featurecounts_group_type).Changes
custom/tx2genemodule from nf-core/modules (PR feat(custom/tx2gene): Support multiple comma-separated gtf_extra_attributes modules#9458)docs/usage.mdOutput format change
When using multiple extra attributes, the
tx2gene.tsvoutput now includes a column for each attribute:Before (single attribute
gene_name):After (multiple attributes
gene_name,gene_type):Test plan
Thanks to @ahwanpandey for reporting this issue!
🤖 Generated with Claude Code