Skip to content

Commit

Permalink
touched up getting-started
Browse files Browse the repository at this point in the history
  • Loading branch information
tclose committed Dec 29, 2024
1 parent edd682f commit f5276b9
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions new-docs/source/tutorial/getting-started.ipynb
Original file line number Diff line number Diff line change
@@ -19,13 +19,14 @@
"## Running your first task\n",
"\n",
"Pre-defined task definitions are installed under the `pydra.tasks.*` namespace by separate\n",
"task packages (e.g. `pydra-fsl`, `pydra-ants`, ...). Pre-define task definitions are run by\n",
"task packages (e.g. `pydra-fsl`, `pydra-ants`, ...). To use a pre-defined task definition\n",
"\n",
"* importing the class from the `pydra.tasks.*` package it is in\n",
"* instantiate the class with the parameters of the task\n",
"* \"call\" resulting object to execute it as you would a function (i.e. with the `my_task(...)`)\n",
"* import the class from the `pydra.tasks.*` package it is in\n",
"* instantiate it with appropriate parameters\n",
"* \"call\" resulting object (i.e. `my_task(...)`) to execute it as you would a function \n",
"\n",
"To demonstrate with a toy example of loading a JSON file with the `pydra.tasks.common.LoadJson` task, we first create an example JSON file to test with"
"To demonstrate with a toy example of loading a JSON file with the\n",
"`pydra.tasks.common.LoadJson` task, we first create an example JSON file to test with"
]
},
{
@@ -250,7 +251,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"## Debugging\n",
"## Debugging failed tasks\n",
"\n",
"Work in progress..."
]

0 comments on commit f5276b9

Please sign in to comment.