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
Copy file name to clipboardExpand all lines: README.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,7 @@
1
1
## Cancer Omics Drug Experiment Response Dataset
2
2
3
+
4
+
3
5
There is a recent explosion of deep learning algorithms that to tackle the computational problem of predicting drug treatment outcome from baseline molecular measurements. To support this,we have built a benchmark dataset that harmonizes diverse datasets to better assess algorithm performance.
4
6
5
7
This package collects diverse sets of paired molecular datasets with corresponding drug sensitivity data. All data here is reprocessed and standardized so it can be easily used as a benchmark dataset for the
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