Hey, just wanted to know how to download L-Dopa challenge data? Can the same script be used as used for sub challenge - 1, else let me know how to go for it.
Created by Rajan Girsa rajan_girsa Thanks @phil
If you use the Python client this should work for you:
```
import synapseclient as sc
syn = sc.login()
q_train = syn.tableQuery("select * from syn10495809")
q_test = syn.tableQuery("select * from syn10701954")
paths_train = syn.downloadTableColumns(q_train, "dataFileHandleId")
paths_test = syn.downloadTableColumns(q_test, "dataFileHandleId")
```
And for easy access to filepaths:
```
df_train = q_train.asDataFrame()
df_test = q_test.asDataFrame()
df_train['path'] = df_train.dataFileHandleId.astype(str).map(paths_train)
df_test['path'] = df_test.dataFileHandleId.astype(str).map(paths_test)
``` Almost. you will have to change the names of the columns you want to download but otherwise it will be the same.