choishingwan / PRS-Tutorial

A tutorial on how to run basic polygenic risk score analysis
MIT License
70 stars 110 forks source link

A small error in the QC Control code #6

Closed PradoVarathan closed 4 years ago

PradoVarathan commented 4 years ago

Hi! This is an wonderful tool for PRS. Thank you so much. I just found that there might be a small error in one of the QC steps under standard GWAS QC step :

Alternatively, you can use R, with data.table v1.11.8+

library(data.table)

Read in file

dat <- fread("Height.gwas.txt.gz")

Filter out SNPs

result <- dat[INFO > 0.8 & MAF < 0.01]

Output the gz file

fwrite(result, "Height.gz", sep="\t")

Here, shouldnt the result be result = dat[INFO >0.8 & MAF > 0.01]

Thank you!

choishingwan commented 4 years ago

Yes, indeed. Nice spot! Thanks

On Sun, 26 Jul 2020 at 5:27 AM, Pradeep Varathan notifications@github.com wrote:

Hi! This is an wonderful tool for PRS. Thank you so much. I just found that there might be a small error in one of the QC steps under standard GWAS QC step : Alternatively, you can use R, with data.table v1.11.8+

library(data.table) Read in file

dat <- fread("Height.gwas.txt.gz") Filter out SNPs

result <- dat[INFO > 0.8 & MAF < 0.01] Output the gz file

fwrite(result, "Height.gz", sep="\t")

Here, shouldnt the result be result = dat[INFO >0.8 & MAF > 0.01]

Thank you!

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/choishingwan/PRS-Tutorial/issues/6, or unsubscribe https://github.com/notifications/unsubscribe-auth/AAJTRYSKXJLH6BZQSXWUAHDR5NE37ANCNFSM4PHUS7VA .

-- Dr Shing Wan Choi Postdoctoral Fellow Genetics and Genomic Sciences Icahn School of Medicine, Mount Sinai, NYC

PradoVarathan commented 4 years ago

Thank you!