Dear jbagaria1206,
The typical program for performing statistical analyses on genetic data is PLINK. To run PLINK, your starting data should generally be VCF, BCF, or some other standard format. Can you clarify the format of your datasets?
It is possible to run statistical analyses in R, too. The most basic association test is just a Chi-squared test, after all, which I show here in R code: A: SNP dataset and Z Score
I also have a Bioconductor R package that I originally developed for the purposes of running statistical tests over large GWAS cohorts in R: RegParallel.
Another program that can run a test directly on your VCF data is SnpSift CaseControl.
For a Manhattan plot, you will require:
- ID (e.g. rs ID)
- CHR (chromosome)
- BP (base position)
- P (p-value)
You then just need the qqman package:
library(qqman)
manhattan(
subset(temp, select=c(SNP, CHR, BP, P)),
main="Allelic model",
suggestiveline=-log10(0.0001),
genomewideline=-log10(5e-08),
col=c("springgreen4", "firebrick"),
chrlabs=c(1:22, "X", "Y", "MT"),
ylim=c(0,15))
legend("topright", cex=0.8, title="Significances", c("P<0.0001", "FDR (P<5.2E-08)"), fill=c("blue", "red"))

"If your dataset is just 53 patients with no controls, then you cannot derive any p-values. So... who told you to generate a Manhattan plot? Do they understand that your dataset is 100% patients? Perhaps they meant something else" That's why I mentioned that I need to compare my data with the healthy controls and how do I do that!
"*The table that you have looks like output from the common program called 'ANNOVAR'. How did you obtain this table? *" Yes, it is a preprocessed data (an Excel file), However I also have vcf file. I do not how which tool is appropriate to open it with so that I can read the data.
"merge all individual VCFs into a single VCF file. You can do this with bcftools merge --merge none [VCF] [VCF] ... [VCF]" Thanks! Also, how? I mean to ask, is this cmd? Do i need special tool to run this command?
Thank you for patiently answering :)
Please use
ADD COMMENT/ADD REPLYwhen responding to existing posts to keep threads logically organized.Re-post this comment at its logical location in @Kevin's answer below and then come back to delete this. You can use " icon in the edit tool bar to quote someone else' text.
Hello jaybee!
We believe that this post does not fit the main topic of this site.
If you still require help with this, then please open a new question that is very specific
For this reason we have closed your question. This allows us to keep the site focused on the topics that the community can help with.
If you disagree please tell us why in a reply below, we'll be happy to talk about it.
Cheers!