From 43217c070e47d3376118b5f32daae6012ad3b32c Mon Sep 17 00:00:00 2001 From: alexwaldrop Date: Thu, 19 Mar 2020 15:22:52 -0400 Subject: [PATCH] Updated process_king_kinship to make space the default delim --- process_king_kinship/process_king_kinship.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/process_king_kinship/process_king_kinship.R b/process_king_kinship/process_king_kinship.R index e9d0d2c..44837f2 100644 --- a/process_king_kinship/process_king_kinship.R +++ b/process_king_kinship/process_king_kinship.R @@ -9,7 +9,7 @@ parser = add_option(object=parser, opt_str=c("--kinship"), default=NULL, type="c help="[REQUIRED] Path to KING kinship output file") parser = add_option(object=parser, opt_str=c("--output_basename"), default=NULL, type="character", help="[REQUIRED] Basename to prefix output files.") -parser = add_option(object=parser, opt_str=c("--output_delim"), default="tab", type="character", +parser = add_option(object=parser, opt_str=c("--output_delim"), default="space", type="character", help="[REQUIRED] Output file delimiter (Options: space, tab, comma)") ############## Parse command line argv = parse_args(parser)