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
The GWAS module integrates with RNA-seq via the multiomics module:
frommetainformant.multiomics.analysisimportintegrationfrommetainformant.gwas.finemapping.colocalizationimporteqtl_coloc# Convert GWAS and expression data to common formatdna_data=integration.from_dna_variants(gwas_sumstats)
rna_data=integration.from_rna_expression(expression_matrix)
# Run integrated analysisintegrated=integration.integrate_omics_data(
dna_data=dna_data,
rna_data=rna_data,
)