-
Notifications
You must be signed in to change notification settings - Fork 16
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add containers for ABCD apps #74
Comments
Some notes from a chat with @soichih
We get 495 apps ATM❯ curl --silent https://brainlife.io/api/warehouse/app/query | jq '.[].name' | nl | tail
486 "Compute summary statistics of diffusion measures mapped to cortical surface - Freesurfer stats - Deprecated Surface"
487 "app-anatomy"
488 "app-time-frequency"
489 "app-maxwell-filtering"
490 "app-filter"
491 "FSL Top-up & Eddy Correct"
492 "Extract individual tractograms for each segmented white matter tract"
493 "Freesurfer 7.3.2"
494 "Compute Backbone Network"
495 "app-events"
here is selection of freesurfer apps with github repos for them❯ cat /tmp/apps.json | jq '.[]| [.name, .github ] | @sh' | grep -i freesurfer | nl
1 "'Freesurfer' 'brainlife/app-freesurfer'"
2 "'Freesurfer on OSG (fsurf)' 'brainlife/app-freesurfer-osg'"
3 "'Freesurfer Deface' 'brainlife/app-deface'"
4 "'Freesurfer Labels to 3D Surfaces' 'kitchell/app-3Dfreesurfs'"
5 "'HCP Pipeline (PreFreeSurfer)' 'brainlife/app-hcp-prefreesurfer'"
6 "'HCP Pipeline (FreeSurfer)' 'brainlife/app-hcp-freesurfer'"
7 "'HCP Pipeline (PostFreeSurfer)' 'soichih/app-hcp-postfreesurfer'"
8 "'Convert Pial (Cortical) and White Matter Surfaces from Freesurfer' 'kitchell/app-3DPialWM_freesurfer'"
9 "'Freesurfer Group Analysis' 'brainlife/app-freesurfer-agg'"
10 "'Freesurfer on OSG' 'brainlife/app-freesurfer-osg'"
11 "'Freesurfer Statistics' 'brainlife/app-freesurfer-stats'"
12 "'Make white matter mask in dwi space from Freesurfer' 'brainlife/app-make-white-matter-mask-freesurfer'"
13 "'Make white matter mask in dwi space from Freesurfer (dtiinit)' 'brainlife/app-make-white-matter-mask-freesurfer'"
14 "'Parcellation Statistics - Deprecated' 'brainlife/app-freesurfer-stats'"
15 "'Compute summary statistics of diffusion measures from subcortical segmentation' 'brainlife/app-freesurfer-stats'"
16 "'Temp extract warp freesurferpost HCP' 'brainlife/app-extract-warp-temp'"
17 "'Generate ROIs for Visual White Matter Analysis in Freesurfer Space (Benson pRF)' 'brainlife/app-roiGenerator'"
18 "'Generate Visual Regions of Interest Binned by Eccentricity Estimates (Benson Atlas) - Freesurfer Space' 'brainlife/app-roiGenerator'"
19 "'Parcellation Statistics' 'brainlife/app-freesurfer-stats'"
20 "'Freesurfer 7.1.1' 'brainlife/app-freesurfer'"
21 "'Parcellation Statistics - Volume' 'brainlife/app-freesurfer-stats'"
22 "'Parcellation Statistics - Surface - Deprecated Datatype' 'brainlife/app-freesurfer-stats'"
23 "'Parcellation Statistics - Surface' 'brainlife/app-freesurfer-stats'"
24 "'Compute summary statistics of diffusion measures from Parcellation (volume)' 'brainlife/app-freesurfer-stats'"
25 "'Compute summary statistics of diffusion measures from Freesurfer Parcellation (volume)' 'brainlife/app-freesurfer-stats'"
26 "'Freesurfer 7.1.1 Longitudinal (Step1/2)' 'brainlife/app-freesurfer-longitudinal'"
27 "'Freesurfer 7.1.1 Longitudinal (Step 2/2)' 'brainlife/app-freesurfer-longitudinal'"
28 "'Freesurfer 7.1.1 - Multiple T1w Inputs' 'bacaron/app-freesurfer'"
29 "'Freesurfer Longitudinal Statistics' 'brainlife/app-freesurfer-longitudinal-statistics'"
30 "'Compute summary statistics of diffusion measures mapped to cortical surface - Freesurfer computations' 'brainlife/app-cortex-tissue-mapping-stats'"
31 "'Compute summary statistics of diffusion measures mapped to cortical surface - Freesurfer stats - Deprecated Surface' 'brainlife/app-cortex-tissue-mapping-stats'"
32 "'Freesurfer 7.3.2' 'brainlife/app-freesurfer'"
so the official seems to be the https://github.com/brainlife/app-freesurfer , and looking at https://github.com/brainlife/app-freesurfer/blob/master/main#L11 we see that execution happens via "straight"
With all that in mind, we might want
|
just confirming on a sample one that no name of the image is stored anywhere in the metadata ❯ pwd
/tmp/app-dtiinit
❯ git grep neurodebian
main:singularity exec docker://brainlife/mcr:neurodebian1604-r2017a ./compiled/dtiinit
❯ curl --silent https://brainlife.io/api/warehouse/app/query | jq . | grep neurodebian1604-r2017a so we would indeed need to have archive of all images. Ideally in OCI form from which we could then produce also singularity images or use directly with podman/docker |
the ones behind https://brainlife.io/apps to go under https://github.com/ReproNim/containers/tree/master/images/abcd
The text was updated successfully, but these errors were encountered: