AllenNeuralDynamics / aind-dynamic-foraging-data-utils

Tools for the analysis of behavior and neural data from the dynamic foraging task
MIT License
2 stars 0 forks source link

Easy tool to download nwb file #27

Open alexpiet opened 2 months ago

alexpiet commented 2 months ago

@rachelstephlee and I imagine a workflow that we download a handful of NWB files to develop packages locally

We would like a programmatic way to do this, with flags for separating video, or other large attributes.

rachelstephlee commented 3 weeks ago

@faezeamin also wants this-- and she mentioned she'd want to know if there are videos.

David gave me this API for programmatically attaching NWB data-assetes

https://docs.codeocean.com/user-guide/v2.22.0/code-ocean-api/capsule#attach-data-assets

each request can only take about a list of 100 data assets. for questions, ask david feng.

sample code from the link.

from codeocean.data_asset import DataAssetAttachParams

data_assets = [
    DataAssetAttachParams(id="1fa0c990-3b5c-402f-ab3c-00cac6eed21e"),
    DataAssetAttachParams(id="1az0c240-1a9z-192b-pa4c-22bac5ffa17b", mount="Reference"),
]        

results = client.capsules.attach_data_assets(
    capsule_id="zv082356-a032-1b97-90b0-f209b8728927",
    attach_params=data_assets,
)

Passed this to @ulisespereira bc he expressed interest to help + wanted data.