Skip to content

NA's in summary output #4

@tmajaria

Description

@tmajaria

Currently, if there are any pvalues == NA in the raw results files, an equal number of NA rows will be produced in the top results output from the summarization task. This is due to filtering over the pvalue column, comparing NA to a scaler (line 223 of summarize_GWAS.R).

The fix should be:

top.assoc <- assoc[!is.na(assoc[,pval]),]
top.assoc <- assoc[assoc[,pval] < pval.threshold, ]

Metadata

Metadata

Assignees

Labels

No labels
No labels

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions