Skip to content

Commit

Permalink
Updated process_king_kinship to make space the default delim
Browse files Browse the repository at this point in the history
  • Loading branch information
alexwaldrop committed Mar 19, 2020
1 parent 88ef95a commit 43217c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion process_king_kinship/process_king_kinship.R
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 43217c0

Please sign in to comment.