Skip to content

Commit

Permalink
Update survival_analysis.py
Browse files Browse the repository at this point in the history
  • Loading branch information
newmanno authored Jul 8, 2024
1 parent 357614c commit 4511672
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion network_analysis/survival_analysis.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
ArgGroup.add_argument("-m", "--metadata", type=str, help="Path to mapping file (csv) that maps samples to groups", required=True)
ArgGroup.add_argument("-t", "--filetype", choices = ["csv", "txt"], help="Type of delimiter used for --datafile", required=True)
ArgGroup.add_argument("-c", "--colname", type=str, help="Name of column containing sample group names", required=True)
ArgGroup.add_argument("-a", "--alivestatus", type=str, help="Name of column that contains the status of the individual. Must contain True/False values only, where True = dead (even occurred) and False = alive.", required=True)
ArgGroup.add_argument("-a", "--alivestatus", type=str, help="Name of column that contains the status of the individual. Must contain True/False values only, where True = dead (event occurred) and False = alive.", required=True)
ArgGroup.add_argument("-d", "--days", type=str, help="Name of column containing either the number of days an individual survived or the number of days to the last follow up.", required=True)
ArgGroup.add_argument("-g", "--compgroups", type=str, nargs=2, help="Name of groups in mapping file to compare", required=True)
ArgGroup.add_argument("-o", "--outdir", type=str, help="Path to directory to output file to", required=True)
Expand Down

0 comments on commit 4511672

Please sign in to comment.