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
Addition of drugs and experiments, alterations to calc_pdx_metrics
Addition of drug data (~12 drugs were not matchable) and experiments from `calc_pdx_metrics.py`. `calc_pdx_metrics.py` was altered to skip auc calculations with fewer than 2 points (the linear model would not converge).
parser=argparse.ArgumentParser(description="This script handles downloading, processing and formatting of omics data files for the Bladder PDO project")
200
+
parser.add_argument('-s', '--samples', help='Path to sample file',default=None)
201
+
parser.add_argument('-g', '--genes', help='Path to genes file', default=None)
202
+
parser.add_argument('-c', '--copy', help='Flag to capture copy number data', action='store_true', default=False)
203
+
parser.add_argument('-m', '--mutation', help='Flag to capture mutation data', action='store_true', default=False)
204
+
parser.add_argument('-e', '--expression', help='Flag to capture transcriptomic data', action='store_true', default=False)
0 commit comments