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.add_argument('-g', '--genes', type=str, default=None, help='Path to transcriptomics genes.csv. Can be obtained using this docker container: https://github.com/PNNL-CompBio/coderdata/blob/0225c52b861dcd6902521228731c54a61768bcd6/build/genes/README.md#L4')
212
+
parser.add_argument('-g', '--genes', type=str, default=None, help='Path to genes.csv. Can be obtained using this docker container: https://github.com/PNNL-CompBio/coderdata/blob/0225c52b861dcd6902521228731c54a61768bcd6/build/genes/README.md#L4')
213
213
parser.add_argument('-i', '--ids', type=str, default=None, help='Path to sample Ids')
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)
200
+
201
+
# filepath and token args
202
+
parser.add_argument('-s', '--samples', help='Path to improve sample file',default=None)
203
+
parser.add_argument('-g', '--genes', help='Path to genes.csv. Can be obtained using this docker container: https://github.com/PNNL-CompBio/coderdata/blob/0225c52b861dcd6902521228731c54a61768bcd6/build/genes/README.md#L4', default=None)
0 commit comments