We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi I am having two dataset , as below
eqtl_fn <- read.table(file="XXXXX/Artery_Coronary_v7_eQTL_PHACTR1.txt", header=T, as.is=T) head(eqtl_fn) gwas_fn <- read.table(file="XXXXX/CAD_GWAS.txt", header=T, as.is=T) head(gwas_fn)
locuscompare(in_fn1=gwas_fn, in_fn2=eqtl_fn, title1="CAD GWAS", title2="Coronary Artery eQTL", marker_col1= gwas_fn$rsnum, pval_col1=gwas_fn$pvalue, marker_col2=eqtl_fn$rsnum, pval_col2=eqtl_fn$pval_nominal)
keep having this error
Error in [.data.frame(d, , c("rsid", "pval", "logp")) : undefined columns selected
[.data.frame
your advise is appreciated.
The text was updated successfully, but these errors were encountered:
solved, never mind.
Sorry, something went wrong.
How did you solve the problem?
No branches or pull requests
Hi
I am having two dataset , as below
eqtl_fn <- read.table(file="XXXXX/Artery_Coronary_v7_eQTL_PHACTR1.txt", header=T, as.is=T)
head(eqtl_fn)
gwas_fn <- read.table(file="XXXXX/CAD_GWAS.txt", header=T, as.is=T)
head(gwas_fn)
locuscompare(in_fn1=gwas_fn, in_fn2=eqtl_fn, title1="CAD GWAS", title2="Coronary Artery eQTL",
marker_col1= gwas_fn$rsnum, pval_col1=gwas_fn$pvalue, marker_col2=eqtl_fn$rsnum, pval_col2=eqtl_fn$pval_nominal)
keep having this error
Error in
[.data.frame
(d, , c("rsid", "pval", "logp")) :undefined columns selected
your advise is appreciated.
The text was updated successfully, but these errors were encountered: