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
This script builds a single dataset for **debugging purposes only**. It can help determine if a dataset will build correctly in isolation. Note that the sample and drug identifiers generated may not align with those from other datasets, so this script is not suitable for building production datasets.
53
+
54
+
It requires the following authorization tokens to be set in the local environment depending on the dataset:
55
+
56
+
`SYNAPSE_AUTH_TOKEN`: Required for beataml and mpnst datasets. Follow the directions above to use gain access.
57
+
58
+
Available arguments:
59
+
-`--dataset`: Required. Name of the dataset to build.
60
+
-`--use_prev_dataset`: Optional. Prefix of the previous dataset for sample and drug ID continuation. The previous dataset files must be in the "local" directory.
61
+
-`--validate`: Optional. Runs the schema checker on the built files.
62
+
-`--continue`: Optional. Continues from where the build left off by skipping existing files in "local" directory.
Build the experiments files for the specified dataset.
164
164
'''
@@ -236,7 +236,6 @@ def main():
236
236
)
237
237
parser.add_argument('--dataset', required=True, help='Name of the dataset to build')
238
238
parser.add_argument('--use_prev_dataset', help='Prefix of the previous dataset for sample and drug ID assignment')
239
-
parser.add_argument('--high-mem', action='store_true', help='Use high memory mode for parallel processing')
240
239
parser.add_argument('--validate', action='store_true', help='Run schema checker on the built files')
241
240
parser.add_argument('--continue', dest='should_continue', action='store_true', help='Continue from where the build left off by skipping existing files')
0 commit comments