Add trans_geno_chromosome parameter and improve trans-QTL pipeline#1310
Merged
gaow merged 1 commit intoStatFunGen:mainfrom Apr 9, 2026
Merged
Add trans_geno_chromosome parameter and improve trans-QTL pipeline#1310gaow merged 1 commit intoStatFunGen:mainfrom
gaow merged 1 commit intoStatFunGen:mainfrom
Conversation
- Add `--trans-geno-chromosome` parameter to specify a different genotype chromosome for trans analysis, enabling phenotype chrX vs genotype chrY analysis - Support both single .bed/.pgen file (filter variants by chromosome after loading) and manifest file (load chromosome-specific plink file) modes - Update trans output filename: `_chrX_geno_chrY.trans_qtl` when trans_geno_chromosome is set, `_chrX.trans_qtl` otherwise - Fix region_list parsing in trans step to support comment lines, no header, and tab-separated format - Remove --entrypoint from help output Note: when running trans analysis split by chromosome (e.g. phenotype chr1 x genotype chr2, phenotype chr1 x genotype chr3, etc.), the q-values computed per-run are NOT accurate because they are based on a subset of tests. The q-values need to be recalculated after combining all results across runs. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
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.
--trans-geno-chromosomeparameter to specify a different genotype chromosome for trans analysis, enabling phenotype chrX vs genotype chrY analysis_chrX_geno_chrY.trans_qtlwhen trans_geno_chromosome is set,_chrX.trans_qtlotherwiseNote: when running trans analysis split by chromosome (e.g. phenotype chr1 x genotype chr2, phenotype chr1 x genotype chr3, etc.), the q-values computed per-run are NOT accurate because they are based on a subset of tests. The q-values need to be recalculated after combining all results across runs.