| args <- commandArgs(trailingOnly = TRUE) | |
| df.path <- args[1] | |
| df <- read.csv(df.path, row.names = 1) | |
| df <- df[df$data_source != 'HGMD',] | |
| write.csv(df, df.path) |
| args <- commandArgs(trailingOnly = TRUE) | |
| df.path <- args[1] | |
| df <- read.csv(df.path, row.names = 1) | |
| df <- df[df$data_source != 'HGMD',] | |
| write.csv(df, df.path) |