You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
parser=argparse.ArgumentParser(description="This script handles downloading, processing and formatting of sample files for the Sarcoma PDO project into a single samplesheet")
parser.add_argument("-p", '--prevSamples', nargs="?", type=str, default="", const="", help="Use this to provide previous sample file, will run sample file generation")
parser=argparse.ArgumentParser(description="This script handles downloading, processing and formatting of omics data files for the Bladder PDO project")
106
+
parser.add_argument('-s', '--samples', help='Path to sample file',default=None)
107
+
parser.add_argument('-g', '--genes', help='Path to genes file', default=None)
108
+
parser.add_argument('-c', '--copy', help='Flag to capture copy number data', action='store_true', default=False)
109
+
parser.add_argument('-m', '--mutation', help='Flag to capture mutation data', action='store_true', default=False)
110
+
parser.add_argument('-e', '--expression', help='Flag to capture transcriptomic data', action='store_true', default=False)
111
+
parser.add_argument('-i', '--geolink', help=".csv file that is the output of 'CNV-segfile-anotation.R")
parser=argparse.ArgumentParser(description="This script handles downloading, processing and formatting of drug data files for the Lee Bladder PDO project")
42
+
parser.add_argument('-d', '--prevDrugFilePath', help='Path to a previous drug file for sarcpdo', nargs="?", default=None)
43
+
parser.add_argument('-o', '--outputPath', help='Output path for updated sarcpdo drug file', default="/tmp/sarcpdo_drugs.tsv")
0 commit comments