Pydra tasks for TemplateFlow
Project description
pydra-templateflow
Pydra tasks for TemplateFlow.
Pydra is a dataflow engine which provides a set of lightweight abstractions for DAG construction, manipulation, and distributed execution.
TemplateFlow provides a framework for publicly hosting and distributing neuroimaging templates for human and nonhuman brains.
Table of contents
Available tasks
This package provides a get_template
task, which takes a mandatory template_id
argument
and an optional output_queries
mapping from output names to their respective query entities.
The following example showcases using get_template
to download the template image,
brain and head masks for the Linear ICBM Average Brain (ICBM152).
from pydra.tasks import templateflow
task = templateflow.get_template(
template_id="MNI152Lin",
output_queries={
"brain_mask": {"resolution": "1", "suffix": "mask", "desc": "head"},
"head_mask": {"resolution": "1", "suffix": "mask", "desc": "brain"},
"t1w_image": {"resolution": "1", "suffix": "T1w"},
},
)
result = task()
# result.output.brain_mask
# result.output.head_mask
# result.output.t1w_image
Please check the list of available templates here.
Installation
pip install pydra-templateflow
Development
This project is managed with Hatch:
pipx install hatch
To run the test suite:
hatch run test
To fix linting issues:
hatch run lint:fix
License
This project is distributed under the terms of the Apache License, Version 2.0.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file pydra_templateflow-0.0.2.tar.gz
.
File metadata
- Download URL: pydra_templateflow-0.0.2.tar.gz
- Upload date:
- Size: 8.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4a583c2c7ff63a1879127962929ac64821a38c69634d4aa252cfbffdf427739e |
|
MD5 | bd72197810fddf4a6ac820be77cf48b3 |
|
BLAKE2b-256 | 4e16082fd3b0366bee046f1e946eae0b568c8cca0f515b728b9684554c10167a |
Provenance
File details
Details for the file pydra_templateflow-0.0.2-py3-none-any.whl
.
File metadata
- Download URL: pydra_templateflow-0.0.2-py3-none-any.whl
- Upload date:
- Size: 7.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f8e806fd2ca482f41007d705e7241f00391aedc5f760cd1e1c4ad10b2a3688f5 |
|
MD5 | 2c5a66e74bbc562e64e6aa68a28dba2d |
|
BLAKE2b-256 | 46c7ba29bca57b7db3f6844968dfeafc7bebb09293f6af4b52162adc698b23b9 |