Contributing to the Neuroimaging Cookbook
The title entered above will automatically appear here, so just start by explaining the recipe purpose of your recipe.
Here are some guidelines for writing your recipe:
- Explain briefly how the recipe works.
- Provide a link to documentation of any third-party software when possible.
- Provide the version of the software/package.
- Use bullet points for your recipe's explanation.
- Try to explain everything briefly but clearly.
- If you provide a custom function, then please provide a usage example below.
Here are some guidelines for submitting your recipe:
- Please use Markdown
- Your recipe should be concise. Please do not exceed 100 lines.
- Your code snippet should be roughly 1-10 lines
- Write your recipe to `content/recipes/*.md'
- Follow this heuristic for saving your recipe:
content/recipes/<user-defined-name>_recipe.md
- If necessary, any images associated with a recipe should follow a heuristic:
content/recipes/<user-defined-name>_image_<index>.jpg
- Please include software versions and links to software documentation when possible
Ingredients:
- Please list any software packages (and dependencies) required for this recipe
Your code snippet should be written in the code cell below. Please remember to specify the programming language used (the one below uses Python).
|
|
Example usage:
If your code snippet includes a custom function, then please provide an example (or two) to demonstrate how it works in the code cell below. Please remember to specify the programming language used (the one below uses Python).
|
|
You can submit your recipe by copying the text from this template HERE and submiting your recipe by submitting a pull request.
Alternatively, you can suggest a recipe below.
Suggest new recipeRecipe made by Shawn Rhoads
These recipes may also be of interest
Automatically Generated Recipe
python r bashExplain briefly what the recipe does. Explain briefly how the recipe works. Provide a citation and link to documentation of any third party … Read More
Convert DICOM files to NIFTI files
This recipe provides code for converting DICOM (.dcm) files to NIFTI (.nii) files dcm2niix This recipe converts dicom to nifti files using … Read More
Mask lower triangle of a Representational Dissimilarity Matrix (RDM)
pythonThis recipe takes a Representational Dissimilarity Matrix (RDM) as a square numpy array, masks the diagonal and lower triangle, and outputs … Read More
Using 3dAFNItoNIFTI to convert AFNI files to NIFTI files
This recipe converts BRIK/HEAD (AFNI) files to NIFTI (.nii) files using 3dAFNItoNIFTI. … Read More