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
Extend quality control and standardisation to QTL analysis. Following checks are specific to QTL studies and need to be added:
Allow for duplicated SNPs
Check effect region/gene region
Convert genome build of effect region/gene region (I think I have a script for this in R and @bschilder has this function)
Standardise gene names - eQTLs (orthogene::map_genes might be helpful, it can take in any format (hgnc, ensembl, entrez, etc) and convert them all to one format. Can even take transcript IDs and map them onto standardised transcript IDs or HGNC symbols, same with protein IDs)
Any QTL specific column headers and what to standardise their names to? (browser eQTL catalogue)
The text was updated successfully, but these errors were encountered:
v1.5.11 can now handle QTL sumstats however it will only check the SNPs, not the effect region (gene for eQTLs). Note to set check_dups = FALSE when running MSS for QTLs
That's awesome news!
Standardizing gene names for eQTLs should be doable using orthogene:::map_genes(). This way, it can handle a variety of gene inputs (gene symbols, ensembl IDs, Entrez IDs, transcript IDs, UniProt IDs) onto standardized IDs (e.g. gene symbols). If you want to avoid having to install all the deps for orthogene, you could instead use the main function it relies on: gprofiler::gconvert() https://github.com/neurogenomics/orthogene/blob/4977da1e09074f5b063f1b0413aa00e08b65929b/R/map_genes.R#L61
For non gene/transcript/protein-based regions, I imagine some other approach would be necessary (e.g. for methylation QTLs).
Extend quality control and standardisation to QTL analysis. Following checks are specific to QTL studies and need to be added:
The text was updated successfully, but these errors were encountered: