diff --git a/README.html b/README.html index 8485fa21..2645ab8b 100644 --- a/README.html +++ b/README.html @@ -228,7 +228,7 @@
  • 💾 Data diff --git a/_sources/data/git-annex-admin.md b/_sources/data/git-annex-admin.md new file mode 100644 index 00000000..e9755142 --- /dev/null +++ b/_sources/data/git-annex-admin.md @@ -0,0 +1,122 @@ +# Admin guide for `data.neuro.polymtl.ca` + +```{warning} +This needs updating following the Gitolite -> Gitea migration. See https://github.com/neuropoly/computers/issues/457. +What appears below is mostly leftover documentation that still needs to be rewritten. +``` + +## New repository + +To make a new repo, follow this [recipe](../geek-tips/git-annex.md#new-repo). + +Then, to upload it, pick a name under `datasets/`, e.g. "my-new-repo", and do + +``` +git remote add origin git@data.neuro.polymtl.ca:datasets/my-new-repo +git branch -M master +# initialize remote and upload metadata +git push -u origin master +# initialize remote annex +git annex sync -a --no-content +# upload images to remote annex +git annex copy --to origin +# verify your .nii.gz files were annexed and uploaded +git annex whereis +``` + +## Releases + +To make a release, use an [annotated git tag](https://git-scm.com/book/en/v2/Git-Basics-Tagging#_annotated_tags). Use the tag name for the name of the release, and the annotation for the release notes. Our naming convention for datasets is "rYYYYMMDD". + +*or*, for example in a reproducible processing script, you can use `clone -b` to download only that specific release: + +``` +git clone --depth 1 -b r20190908 git@data.neuro.polymtl.ca:datasets/example.git +``` + +We are using [`Gitolite`](https://gitolite.com/) with [`git-annex`](https://git-annex.branchable.com/) as our dataset server. +It is compatible with [`datalad`](https://www.datalad.org/) but to reduce the fragility we only support the basics. + +Datasets are stored as git repositories on the server, with the bulk of their data *also* stored on the server in each repo's "annex" folder. Using `git-annex` enables data on-demand -- in our default configuration, only the data needed for the active branch is actually downloaded by a user, and it is also possible for the user to choose specific folders to focus on. Datasets are `git-annex` [ssh remotes](https://git-annex.branchable.com/walkthrough/#index11h2). + +The VM is monitored [here](https://monitor.neuro.polymtl.ca/host/data.neuro.polymtl.ca/#menu_system_submenu_cpu;after=0;before=0;theme=slate;help=true;utc=America/Toronto) (requires VPN to connect to the dashboard monitor). + +## Backups + +Encrypted backups are sent daily to `s3+https://s3.ca-central-1.amazonaws.com/data.neuro.polymtl.ca.restic` and `sftp://narval.computecanada.ca:projects/def-jcohen/data.neuro.polymtl.ca.restic`. Daily backups are retained for the current week, weekly for the current month, and monthly for the current year. + +We use a backup tool called `restic` and to recover files you should [review its full recovery documentation](https://restic.readthedocs.io/en/stable/050_restore.html) to use it safely, but the quick version is that you need to provide backup credentials, one set for either location. **It is your responsibility as a data server admin** to ensure you have generated and can protect these credentials. + +``` +# AWS +export RESTIC_REPOSITORY=s3:s3.ca-central-1.amazonaws.com/data.neuro.polymtl.ca.restic +export RESTIC_PASSWORD="...." +export AWS_ACCESS_KEY_ID="...." +export AWS_SECRET_ACCESS_KEY="....." +``` + +``` +# ComputeCanada +export RESTIC_REPOSITORY=sftp:narval.computecanada.ca:projects/def-jcohen/data.neuro.polymtl.ca.restic +export RESTIC_PASSWORD="...." +# you also implicitly need an account that can `ssh narval.computecanada.ca` +``` + +Once credentialed, the easiest way to recover files is `restic mount`: + +``` +mkdir data-backups +restic mount backups & +# datasets are now in backups/snapshots/*/repositories/datasets/ +ls -l backups/snapshots/latest/repositories/datasets/ +``` + +Then you can use `git clone` or `rsync` to recover specific old files/git objects/commits/etc + +
    For example + +You can examine any old version of any git repo + +``` +git@data:~$ cd backups/snapshots/2022-06-30T02\:00\:02-04\:00/repositories/datasets/uk-biobank.git/; git log HEAD~3.. +commit 96bdd193d0da999895734a57f8bbfa275db91ad1 (HEAD -> master) +Author: Alexandru Foias +Date: Fri Feb 12 15:24:04 2021 -0500 + + Add 650 subjects + +commit 3d55fe9a3b6f04f5a6bd1b50274108de1810fcc8 +Author: Nick Guenther +Date: Thu Feb 11 12:37:26 2021 -0500 + + bids-validator: missing } + +commit 892c030faef331591048f8b6487dd65f74afbea7 +Author: Nick Guenther +Date: Thu Feb 11 12:36:32 2021 -0500 + + bids-validator: README should be named just 'README' +``` + +
    + +## Recovery Shortcut + +If you are in a pinch, _and the server is still running_, you can use its credentials instead of loading your own. + +``` +ssh root@data.neuro.polymtl.ca +su -l git -s /bin/bash +set -a && . .config/restic/s3 +mkdir -p backups +restic mount backups & +# datasets are now in backups/snapshots/*/repositories/datasets/ +``` + +## Troubleshooting + +If you are having a problem, please open an issue [here](https://github.com/neuropoly/data-management/issues). Please don't be shy, if you don't report the issue, we won't know about it and it will never be solved 😉 + +If the server is doing something strange, contact someone with sysadmin-access to the server. + +These people can investigate by following the gitolote guide in the [sysadmin docs](https://github.com/neuropoly/management/blob/master/docs/gitolite.md). diff --git a/_sources/data/git-datasets.md b/_sources/data/git-datasets.md index dd15508e..d0590a21 100644 --- a/_sources/data/git-datasets.md +++ b/_sources/data/git-datasets.md @@ -1,8 +1,7 @@ -# `data` +# `data.neuro.polymtl.ca` -```{warning} -This needs updating following the Gitolite -> Gitea migration. See https://github.com/neuropoly/computers/issues/457. -``` +Link to the web interface (only accessible from a wired connection on-campus): + This server includes private MRI and microscopy datasets, which have been curated and organized according to the [BIDS](https://bids.neuroimaging.io/) convention. @@ -11,565 +10,204 @@ This server includes private MRI and microscopy datasets, which have been curate It hosts [BIDS](https://bids-specification.readthedocs.io) datasets, version-controlled using [`git-annex`](https://git-annex.branchable.com/). It is locked behind a [VPN](../computing-resources/neuropoly/README.md#vpn) because much of our data is under medical ethics protections, and needs to be kept off the general internet. +## Connecting from a wired connection on-campus + +If you want to use the web interface: + +1. In your web browser, go to . + + If this takes a long time and/or times out, it's probably because you're not actually using a wired (ethernet) connection on-campus. Try [the next section](#connecting-from-wifi-or-off-campus). + + If it's the first time you visit this URL, you will probably get a security warning about the [self-signed HTTPS certificate we're using](https://github.com/neuropoly/computers/issues/337#issuecomment-1976098453). You may have to add a security exception in your browser. +2. Click "Sign In" at the top right of the page. +3. The username and password should be the same as the ones you normally use to connect to lab computers (that is, your [GRAMES / GE account](../computing-resources/neuropoly/README.md#ge)). +4. If it's your first time using the web interface, you may want to start by [changing some of your settings](#initial-setup). + +## Connecting from wifi or off-campus + +If you want to use the web interface: + +1. If you're off-campus: first connect to the [VPN](../computing-resources/neuropoly/README.md#vpn). +2. Next, set up port forwarding for the duration of your task, by running the following command in a terminal window. You should replace `"$USER"` with your [GRAMES / GE](../computing-resources/neuropoly/README.md#ge) username: + + ```sh + ssh -N -L 3000:localhost:3000 "$USER"@data.neuro.polymtl.ca + ``` + + This command won't produce any output while it's running. Once you're done using the web interface, you should terminate the SSH command with ctrl-C. +3. In your web browser, go to . + + Note that this is an HTTP (not HTTPS) address, but your connection to the server is protected by SSH. This also means that you won't have to accept the server's self-signed HTTPS certificate. +4. Click "Sign In" at the top right of the page. +5. The username and password is the same as your [GRAMES / GE account](../computing-resources/neuropoly/README.md#ge), again. +6. If it's your first time using the web interface, you may want to start by [changing some of your settings](#initial-setup). +7. Remember to terminate the SSH command with ctrl-C when you're done using the web interface. + +## Initial setup + +While you're logged in to the web interface: + +1. (Optional) You may want to change the default language between French and English. + 1. Click your user icon at the top right of any page. + 2. Select "Configuration" or "[Settings](https://data.neuro.polymtl.ca/user/settings)" in the menu that unrolls. + 3. Select "Apparence" or "[Appearance](https://data.neuro.polymtl.ca/user/settings/appearance)" in the left menu bar. + 4. Update the "Langue" or "Language" selection. + 5. Click "Modifier la langue" or "Update Language". +2. (Optional) You may want to change your user icon, instead of using the auto-generated abstract art. + 1. Click your user icon at the top right of any page. + 2. Select "[Settings](https://data.neuro.polymtl.ca/user/settings)" in the menu that unrolls. + 3. Select "[Profile](https://data.neuro.polymtl.ca/user/settings)" in the left menu bar. + 4. Next to "Choose new avatar", click the "Browse..." button. + 5. Select the user image file you want to upload. + 6. Click "Update Avatar". +3. (Recommended) Set up command-line access with an SSH key. + (This needs to be done once for each computer you use.) + 1. Get your SSH key from the terminal: + 1. Check whether you already have an SSH key: + ```sh + ls ~/.ssh/id_ed25519.pub + ``` + 2. If the above file doesn't exist, create it with this command: + ```sh + ssh-keygen -t ed25519 + ``` + 3. Display the public part of your SSH key: + ```sh + cat ~/.ssh/id_ed25519.pub + ``` + It should be a single line of text that looks something like this: + ``` + ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIEWpqMuw5ifj87tdl12x5+LJ3uqHdfFQmoVQKsDLjKYG your.user.name@some.computer.name + ``` + 2. Put the SSH key in the web interface: + 1. Click your user icon at the top right of any page. + 2. Select "[Settings](https://data.neuro.polymtl.ca/user/settings)" in the menu that unrolls. + 3. Select "[SSH / GPG Keys](https://data.neuro.polymtl.ca/user/settings/keys)" in the left menu bar. + 4. To the right of the heading "Manage SSH Keys", click "Add Key". + 5. Paste the contents of the file `~/.ssh/id_ed25519.pub` into the "Content" box. + 6. Click "Add Key" below. + 3. Test your SSH key from the terminal with the command: + ```sh + ssh git@data.neuro.polymtl.ca + ``` + It might ask for the **passphrase** for your key `~/.ssh/id_ed25519.pub`. It should output something like this: + ``` + PTY allocation request failed + Hi there, "$USER"! You've successfully authenticated with the key named "$EMAIL", but Gitea does not provide shell access. + If this is unexpected, please log in with password and setup Gitea under another user. + Shared connection to data.neuro.polymtl.ca closed. + ``` + If it asks for a **password** for `git@data.neuro.polymtl.ca`, or the output ends with this, then it didn't work and you should [ask for help](#getting-help): + ``` + ... + git@data.neuro.polymtl.ca: Permission denied (publickey,password). + ``` +4. (Recommended) Make sure you have `git` and `git-annex` installed on your computer. See [`git-annex` installation](../geek-tips/git-annex.md#installation). + +## Listing the available datasets + +To view the existing repositories, connect to the web interface and use the "[Explore](https://data.neuro.polymtl.ca/explore/repos)" tab, which is linked from the top of every page. Keep in mind that there are multiple pages, so either use the search box or click "Next" if you're looking for a specific repository or username. + +## Connecting from the command-line (cloning a repo) + +If you just want to run `git` commands from the command-line (`clone`, `pull`, `push`, etc.): + +1. If you're off-campus: first connect to the [VPN](../computing-resources/neuropoly/README.md#vpn). + + Note that there's no need to do SSH port forwarding. +2. To make a local clone, replace `"$REPO"` with the actual repository name in the following commands: + ```sh + git clone git@data.neuro.polymtl.ca:datasets/"$REPO" + cd "$REPO" + git annex dead here + git annex get + ``` + + If the `clone` command fails, it's possible that you need to tell the server about your computer's SSH public key. See the section on doing the [initial setup](#initial-setup). +3. All other `git` commands should work normally. + +## Getting changes from the server + +If you have already cloned a repository and would like to get the latest version: + +1. Make sure you're on the right branch, and all your changes are saved, and you have a clean worktree. The command `git status` should say: + ``` + On branch "$BRANCH" + ... + nothing to commit, working tree clean + ``` +2. Run the command: + ```sh + git annex pull + ``` + If your version of `git-annex` is older, you may need to use this command instead: + ```sh + git annex sync --content --no-push + ``` + +## Getting write access to a repository + +By default, all lab members have _read_ access to all repositories, so you can [clone repositories]() and [pull changes from the server](#getting-changes-from-the-server). If you want to [open issues](#opening-an-issue) or [push changes to the server](#making-a-pull-request), you will need _write_ access to the repository in question. + +To get write access to a repository, ask [one of the current admins](#getting-help). They will need to use the web interface, go to the repository's "Settings" tab, and add your username to the list of "Collaborators". + +## Opening an issue + +If you're working with a dataset, and you notice that something is wrong, or something could be better, consider opening an issue! + +1. If it's your first issue or pull request for the repository, [ask for write access](#getting-write-access-to-a-repository). +2. In the web interface, go to the repository page. +3. Click on the "Issues" tab. +4. Click "New Issue". +5. Fill in the title and describe the issue in as little or as much detail as you want. +6. Click "Create Issue". + +## Making a pull request + +If you want to modify a dataset, you should make a pull request, which can then be reviewed and merged into the master branch. + +1. First make sure you have a [local clone]() of the repo, and that it's [up to date](#getting-changes-from-the-server). +2. Create a new branch for your work, starting from the current `master` branch. If your initials are `xyz` and you want to work on `some-topic`, your branch should be called `xyz/some-topic`. From inside your local clone of the repo, use the command: + ```sh + git checkout -b xyz/some-topic master + ``` +3. Make the changes you want to the files in the repo, then save the changes in a commit (or several commits). You can use the commands: + ```sh + git add . + git commit + ``` +4. For the previous steps, only read access was needed. For the following steps, you will need [write access](#getting-write-access-to-a-repository). +5. To push the changes to the server (both the changes in your branch `xyz/some-topic` and in the special branch `git-annex`), you can use the command: + ```sh + git annex push + ``` + If your version of `git-annex` is older, you may need to use this command instead: + ```sh + git annex sync --all --content + ``` +6. On the web interface , open a pull request: + 1. Go the the repository's page. + 2. Click on the "Pull Requests" tab. + 3. Click the "New Pull Request" button. + 4. Leave the dropdown menu that says "merge into: datasets:master" as it is. + 5. Select your branch `datasets:xyz/some-topic` in the "pull from:" dropdown menu. A preview of your changes should appear below. + 6. Click the "New Pull Request" button that appeared below. + 7. Enter a title and a description of your changes, along with any relevant context, in the text boxes that appeared. + 8. Click "Create Pull Request". + +## Getting help + +If you need help with anything related to , your best bet is to post a question on the [#database_mri](https://app.slack.com/client/T034UD4QN/CB232HT46) Slack channel. + +The usual server admins are: -Initial setup -------------- - -### Prerequisites - -0. You must have a \*nix OS with `git-annex>=8` installed. See [`git-annex` installation](../geek-tips/git-annex.md#installation). -2. Make sure you have an ssh key. - * If not, run `ssh-keygen -t ed25519 -C your.name@polymtl.ca`. Your keys will be in the hidden folder `~/.ssh/`. - -### Getting an account - -```{note} -If you already have an account on a server and/or laptop, and you want to have access from a new machine, see the section on [adding extra devices](#add-extra-devices) instead. -``` - -If not already done, reopen your [onboarding ticket](https://github.com/neuropoly/onboarding/issues/) to request to be added to the git-annex by providing the contents of your **public key** (examples: `~/.ssh/id_rsa.pub`, `~/.ssh/id_ed25519.pub`). - -A **public key** should look like - -``` -ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDE+b5vj+WvS5l6j56NF/leMpC2xT7JUCMUWDAqvWoVmNZ7UR3dGXQeTPTlmPmxPGD2Hk9/zFzxO2kYOt9o4lHQ0QQSKLUmTyuieyJE26wL1ZiLilmTgvgMxxkxvInF/Vr78V5Ll72zAmXzUxVSvuDGY2GRjnLreYheiqg1F3xTuD68uWInX8ZwA7NDtKpoZ7Aat063vD79WBrtiCfvAMbM8QhC3294zxqAjjy9fxs+TMTqAxtKdaWCA/eCs7sx9uvtFcj2Q9jxCMB3br5HyPLotgJMoIMt+fywj+vQG907LODRcqm9J0+ih+38/3Y6aqECMkHA9WWIfFywwjeA7EGr your.name@polymtl.ca -``` - -or - -``` -ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJwsjlem+acuTOZGyNQKjyI7kJe9ULkhZo7N04QfC/tA your.name@polymtl.ca -``` +* mathieu.guay-paquet@polymtl.ca +* emma.lichtenstein@polymtl.ca -Current **server admins** are: +In case of emergency, these people also have admin access: -* mathieu.guay-paquet@polymtl.ca +* eva.alonso-ortiz@polymtl.ca +* jcohen@polymtl.ca +* joshua.newton@polymtl.ca * mathieu.boudreau@polymtl.ca * nathan.gorvett@polymtl.ca -* nick.guenther@polymtl.ca -* joshua.newton@polymtl.ca -* jcohen@polymtl.ca -* eva.alonso-ortiz@polymtl.ca - -The admins should follow [Admin Guide > Add Users](#add-users) to create your account. - -### Connecting to `data.neuro.polymtl.ca` - -Because this server contains private medical data, you need to be on campus, connected to the VPN, or working from a server on campus, like `joplin` or `rosenberg` to access it. - -*If connecting from off-campus*, connect to [polyvpn](http://www.polymtl.ca/si/reseaux/acces-securise-rvp-ou-vpn). - -> 🏚️ Verify connectivity by running `ping data.neuro.polymtl.ca`. If **you cannot ping** then you need to double-check your VPN connection; make sure it is connected, make sure you can reach `joplin`, and if it still isn't working *ask the [Poly network admins](mailto:dge.informatique@polymtl.ca)* to unblock your account from this server. - -Verify you can use the server by running `ssh git@data.neuro.polymtl.ca help`. If it hangs, triple-check again your VPN. If it asks for `git@data.neuro.polymtl.ca's password`, double-check that `ls -la ~/.ssh` shows permissions of `drwx------` for the `.` folder, and that the files `id_ed25519` and `id_ed25519.pub` (or `id_rsa` and `id_rsa.pub`) exist with exactly those names. A successful connection looks like: - -``` -$ ssh git@data.neuro.polymtl.ca help -Enter passphrase for key '/home/kousu/.ssh/id_ed25519.neuropoly': -hello yourusername, this is git@data running gitolite3 3.6.11-2 (Debian) on git 2.27.0 - -list of remote commands available: - - D - create - desc - git-annex-shell - help - info - keys - perms - readme - writable -``` - -Usage ------ - -During daily usage, you will need to be [*on the polyvpn network*](../computing-resources/neuropoly/README.md#vpn) to access the server. - -You should also make sure to [configure git annex](../geek-tips/git-annex.md#global-git-config) for the best performance. - -### List - -To see what datasets you have available, use `info`, for example: - -``` -ssh git@data.neuro.polymtl.ca info -``` - -And the output would look like this: -``` -hello yourusername, this is git@data running gitolite3 3.6.11-2 (Debian) on git 2.27.0 - R datasets/..* - R datasets/basel-mp2rage - R W datasets/bavaria-quebec-spine-ms -... -``` - -You are identified to the server by your ssh keys, but notice that this tells you the username you are known as. - -### Download - -To download an existing repository use `git clone`: - -``` -git clone git@data.neuro.polymtl.ca:datasets/ # download folders and metadata -cd -``` - -After running `git clone git@data.neuro.polymtl.ca:datasets/`, only metadata and small-size files such as `.json` sidecars are cloned (downloaded). In other words, you can access the content of the `.json` sidecars but can not open image `.nii` files. - -To download all image `.nii` files, run: - -``` -git annex get . # download images -``` - -If you just want to explore, you can opt for a portion of the image `.nii` files by specifying paths instead of the last step, for example: - -``` -git annex get sub-karo* # download images under any of sub-karo*/* -``` - -> **Note**: If you want to download images together with corresponding derivatives files for a specific subject(s), use: - -``` -git annex get {./,derivatives/**/}sub-karo* # download images and derivatives for sub-karo* subjects -``` - -### Update - -If you have already cloned a repository and you would like to get its latest version, do: - -``` -git pull && git annex sync --no-content && git annex get . -``` - -### Upload - -Despite not being hosted on Github, we are still using a [pull-request workflow](https://guides.github.com/introduction/flow/). -So, to make changes to a dataset, first ask an admin to [grant you upload rights](#permissions), then make a working branch for your changes. If your initials are `xy` and you are working on `some-topic`: - -```{note} -If you are uploading data to a dataset for the first time, run `git annex dead here` to configure your local clone of the repository. -``` - -``` -git checkout -b xy/some-topic master -# Edit your files, add new ones, etc. -# Add all modified files to be commited -git add . -# To add specific files, do: git add path/to/new/file -# Commit and write a useful commit message -git commit -``` - -The *first* time before uploading, verify you have access with `info`. You need "W" (for "Write") permission, like this: - -``` -ssh git@data.neuro.polymtl.ca info datasets/uk-biobank -``` - -The output would look like: -``` -hello yourusername, this is git@data running gitolite3 3.6.11-2 (Debian) on git 2.27.0 - - R W datasets/uk-biobank -``` - -Once you have access you should: - -``` -git annex copy --all --to=origin -git annex sync --no-content --only-annex -git push -``` - -Finally, ask one of that dataset's reviewers to [look at your pull request](#reviewing-pull-requests) by **opening an issue** (not creating a new pull request) on [neuropoly/data-management](https://github.com/neuropoly/data-management). The details of your pull request (i.e. the changes made to the dataset) must be explained in the issue along with name of your branch on which the changes can be found. - -```{note} -You do not have to open an issue if your change is small, such as updating a single image. Instead, describe your change in the commit message and ask one of that dataset's reviewers by Slack. -``` - -If you are uploading changes gradually, you can reuse the same branch: - -``` -# First, update your local master branch: -git checkout master -git pull && git annex sync --no-content - -# Then, bring your branch up to include the recent changes: -git checkout branch_you_are_reusing -git merge --ff-only master -git pull && git annex sync --no-content - -# Then, modify a file and make a new commit: -git add . -git commit -git push origin branch_you_are_reusing -``` - -### Reviewing Pull Requests - -If someone asks you to review their changes on branch `xy/some-topic`: - -``` -git fetch -git checkout xy/some-topic -git annex get . -``` - -Then look at the branch to see if it looks right to you. - -To investigate what changed: - -``` -# list changed files -git diff --name-only master..HEAD -# list changed files (each commit) -git log --stat master..HEAD -# to see content, overall -git diff master..HEAD -# to see content, commit-by-commit -git log -p master..HEAD -``` - -Also, it's a good idea to run: - -``` -git annex whereis -``` - -To check that all the annexed files have been uploaded. - - -> 🏚️ `git-annex` is not well-suited to a pull-request flow. It is mostly designed for a single person to share data among many computers, not for multiple people to share data between a few computers. We can make it work but it needs some patience. Have a cat to make it better: 🐈🌺 - - -#### Commit Rights - - -Each repo has its own [`OWNERS` group](#permissions) attached. These are the people allowed to commit to `master`, and usually they should be the [reviewers](#reviewing-pull-requests) as well. - -In order to join this group, someone already in it needs to grant you access: - -``` -ssh git@data.neuro.polymtl.ca perms datasets/my-new-repo + OWNERS yourusername -``` - -You can check if you have commit rights to a dataset "my-new-repo" by seeing if you appear in the group: - -``` -ssh git@data.neuro.polymtl.ca perms datasets/my-new-repo -l | grep OWNERS -``` - -#### Committing - -Once a branch is finalized: - -``` -git checkout master -git merge --ff-only xy/some-topic -# or use git pull --squash xy/some-topic -git push -# no need for git-annex sync here, no annex files have been moved -``` - -(Optional) Clean up the branch: - -``` -git branch -d xy/some-topic -# redundancy -git branch -d synced/xy/some-topic -git push origin :xy/some-topic -git push origin :synced/xy/some-topic -``` - - -### New repository - -```{note} -Only NeuroPoly admnistrators have the needed privileges to create a new repository. Please contact the admins on the [#database_mri](https://app.slack.com/client/T034UD4QN/CB232HT46) Slack channel for assistance; they'll create a new empty repository for you and grant you write privileges so that you can add your dataset in a git branch and open a [pull-request](#upload). -``` - -To make a new repo, follow this [recipe](../geek-tips/git-annex.md#new-repo). - -Then, to upload it, pick a name under `datasets/`, e.g. "my-new-repo", and do - -``` -git remote add origin git@data.neuro.polymtl.ca:datasets/my-new-repo -git branch -M master -# initialize remote and upload metadata -git push -u origin master -# initialize remote annex -git annex sync -a --no-content -# upload images to remote annex -git annex copy --to origin -# verify your .nii.gz files were annexed and uploaded -git annex whereis -``` - -### Releases - -To make a release, use an [annotated git tag](https://git-scm.com/book/en/v2/Git-Basics-Tagging#_annotated_tags). Use the tag name for the name of the release, and the annotation for the release notes. Our naming convention for datasets is "rYYYYMMDD". - -For example, if today is September 8th, 2019, then to create a release do: - -``` -git tag -a r20190908 -``` - -To view available releases, first [download](#download) a dataset, then run - -``` -git tag -l -``` - -To see the release notes for a specific release, use - -``` -git show r20190908 -``` - -To use a specific release, either [download](#download) the dataset and then - -``` -git checkout r20190908 -``` - -*or*, for example in a reproducible processing script, you can use `clone -b` to download only that specific release: - -``` -git clone --depth 1 -b r20190908 git@data.neuro.polymtl.ca:datasets/example.git -``` - -### Permissions - -You can grant others permissions to your repositories with `perms`. - -``` -ssh git@data.neuro.polymtl.ca perms datasets/my-new-repo + WRITERS someone # grant someone upload rights -ssh git@data.neuro.polymtl.ca perms datasets/my-new-repo - WRITERS someone # revoke someone's upload rights -ssh git@data.neuro.polymtl.ca perms datasets/my-new-repo + OWNERS researcher2 # grant someone rights to add (and remove) others and to merge to master -ssh git@data.neuro.polymtl.ca perms datasets/my-new-repo -l # view users -ssh git@data.neuro.polymtl.ca perms datasets/my-new-repo -lr # view access rules -``` - -Use - -``` -ssh git@data.neuro.polymtl.ca perms -h -``` - -and see https://gitolite.com/gitolite/user#setget-additional-permissions-for-repos-you-created for full details. - - -### Renaming - -There is no way for a user to rename a repo directly ([bug report](https://github.com/neuropoly/data-management/issues/83)). -You can [ask an admin to do it](#renaming-1). - -### Deletion - -If you created or own a repo and decide it is no longer necessary: - -``` -ssh git@data.neuro.polymtl.ca D trash repo -``` - -The "trash" is cleaned out after a week. *Except it's not, yet: https://github.com/neuropoly/data-management/issues/54* - -#### Deleting a branch - -If you no longer are working on a specific, make sure that it is deleted (in order to save space and avoid maintaining unnecessary commit history). The relevant commands can be found under _Clean up a branch_ [here](#committing). - - -### Add extra devices - -Like with Github, you can authorize any number of secondary devices. Assuming you already have authorization on your computer and want to authorize yourself on `joplin`, here is the procedure: - -* Log on to `joplin` via ssh : - * If you already have a ssh key, you can get it by looking into `~/.ssh/`: the key will either be `id_rsa.pub` or `id_ed25519.pub`. You can display it by doing: `cat ~/.ssh/id_*.pub`. Now that you have the public key, copy it. - * If you don't have a public key, generate it by running `ssh-keygen`. Then copy it using the explanation above. -* In a terminal on your computer (either at NeuroPoly or on a VPN): - * Check if you have access to git annex by doing: `ssh git@data.neuro.polymtl.ca info` - * Then, from here, you can add the public key you copied from `joplin` by doing : `ssh git@data.neuro.polymtl.ca keys add @joplin` (this will create a new point of access to git annex with your account called 'joplin'). This asks for the public part of the new ssh key created on `joplin`. Copy-paste the contents of the file and press Enter! - -Once added, you should be able to see the newly added key by running: - -``` -ssh git@data.neuro.polymtl.ca keys list -``` - -Admin Guide ------------ - -We are using [`Gitolite`](https://gitolite.com/) with [`git-annex`](https://git-annex.branchable.com/) as our dataset server. -It is compatible with [`datalad`](https://www.datalad.org/) but to reduce the fragility we only support the basics. - -Datasets are stored as git repositories on the server, with the bulk of their data *also* stored on the server in each repo's "annex" folder. Using `git-annex` enables data on-demand -- in our default configuration, only the data needed for the active branch is actually downloaded by a user, and it is also possible for the user to choose specific folders to focus on. Datasets are `git-annex` [ssh remotes](https://git-annex.branchable.com/walkthrough/#index11h2). - -`gitolite` manages users and their permissions. The repositories containing datasets are under `data.neuro.polymtl.ca:datasets/*`, and the server also contains a few admin-only repositories outside of `datasets/*`. - -The VM is monitored [here](https://monitor.neuro.polymtl.ca/host/data.neuro.polymtl.ca/#menu_system_submenu_cpu;after=0;before=0;theme=slate;help=true;utc=America/Toronto) (requires VPN to connect to the dashboard monitor). - - -### List users - -``` -ssh git@data.neuro.polymtl.ca keys list -``` - -### Add users - -To grant access to a lab member, [as above](#add-extra-devices), ask the lab member to generate an ssh key using `ssh-keygen` and have them send you the *public key*. Save it to a file `firstnamelastname.pub` and add them with - -``` -cat firstnamelastname.pub | ssh git@data.neuro.polymtl.ca keys add firstnamelastname -``` - -You can also paste the key in, followed by `ctrl-d`; this looks like: - -``` -ssh git@data.neuro.polymtl.ca keys add firstnamelastname -``` - -The output looks like: -``` -Enter passphrase for key '/home/kousu/.ssh/id_rsa.github': -please supply the new key on STDIN (e.g. cat you.pub | ssh gitolite@git.example.com keys add @laptop). -ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAID11N3hQpJP4Okivd5xO3N0CuO24ioMwXYv+l/1PM/+z firstname.lastname@polymtl.ca -Added SHA256:hwil2tmaw/prgIBX5odO8vOAj2i38gPrUGjGZnnkVvo : firstnamelastname.pub -``` - -You should use the person's full name as their username, in the form `firstnamelastname`, with no spaces or periods or anything. It's essentially an arbitrary string that the user doesn't really need to know, since everyone is authenticated using just their public/private keys without supplying a username. The only time users see them is when they run `info` or use `perms`. We would **like** to use the format firstname.lastname@polymtl.ca, but [there is a bug](https://github.com/kousu/gitolite-mods/issues/3), so just use `firstnamelastname`. Once someone is registered they can add and remove their own keys without having to know their username. - - -### Permissions - -As admin, you can add or revoke any permissions to any repo [using `perms`](#permissions). - -There is unfortunately no way to view permissions *as another user* so you will need to rely on people sending you screenshots if they are having problems -but you can at least inspect the active sets of permissions on a repo with - -``` -ssh git@data.neuro.polymtl.ca perms -l -``` - -If you need to add new namespaces or finer grained permissions, first, reconsider if the extra complexity and the _risk of locking yourself out_ is worth it. Everything you should need to manage the lab should be doable via `ssh git@data.neuro.polymtl.ca help`. If you are sure, then review [gitolite's permissions model](https://gitolite.com/gitolite/conf.html) and [official docs for this use case](https://gitolite.com/gitolite/fool_proof_setup.html#administration-tasks), then: - -``` -git clone git@data.neuro.polymtl.ca:gitolite-admin -cd gitolite-admin -vi conf/gitolite.conf # optional: investigate/change the repo definitions -ls -R keydir/ # optional: investigate/change who has access; this *should* be unnecessary, use `keys` as above instead. -git add -u . && git push -``` - -### Renaming - -As an admin, you can rename a repo by connecting to the server directly: - -``` -ssh root@data.neuro.polymtl.ca -sudo -u git -i -cd repositories/datasets/ -mv $dataset.git $new_name.git -``` - -### Deletion - -You can also delete any repo [using `D`](#deletion). - -You can also get rid of a dataset immediately by: - -``` -ssh git@data.neuro.polymtl.ca D unlock datasets/ -ssh git@data.neuro.polymtl.ca D rm datasets/ -``` - -### Backups - -Encrypted backups are sent daily to `s3+https://s3.ca-central-1.amazonaws.com/data.neuro.polymtl.ca.restic` and `sftp://narval.computecanada.ca:projects/def-jcohen/data.neuro.polymtl.ca.restic`. Daily backups are retained for the current week, weekly for the current month, and monthly for the current year. - -We use a backup tool called `restic` and to recover files you should [review its full recovery documentation](https://restic.readthedocs.io/en/stable/050_restore.html) to use it safely, but the quick version is that you need to provide backup credentials, one set for either location. **It is your responsibility as a data server admin** to ensure you have generated and can protect these credentials. - -``` -# AWS -export RESTIC_REPOSITORY=s3:s3.ca-central-1.amazonaws.com/data.neuro.polymtl.ca.restic -export RESTIC_PASSWORD="...." -export AWS_ACCESS_KEY_ID="...." -export AWS_SECRET_ACCESS_KEY="....." -``` - -``` -# ComputeCanada -export RESTIC_REPOSITORY=sftp:narval.computecanada.ca:projects/def-jcohen/data.neuro.polymtl.ca.restic -export RESTIC_PASSWORD="...." -# you also implicitly need an account that can `ssh narval.computecanada.ca` -``` - -Once credentialed, the easiest way to recover files is `restic mount`: - -``` -mkdir data-backups -restic mount backups & -# datasets are now in backups/snapshots/*/repositories/datasets/ -ls -l backups/snapshots/latest/repositories/datasets/ -``` - -Then you can use `git clone` or `rsync` to recover specific old files/git objects/commits/etc - -
    For example - -You can examine any old version of any git repo - -``` -git@data:~$ cd backups/snapshots/2022-06-30T02\:00\:02-04\:00/repositories/datasets/uk-biobank.git/; git log HEAD~3.. -commit 96bdd193d0da999895734a57f8bbfa275db91ad1 (HEAD -> master) -Author: Alexandru Foias -Date: Fri Feb 12 15:24:04 2021 -0500 - - Add 650 subjects - -commit 3d55fe9a3b6f04f5a6bd1b50274108de1810fcc8 -Author: Nick Guenther -Date: Thu Feb 11 12:37:26 2021 -0500 - - bids-validator: missing } - -commit 892c030faef331591048f8b6487dd65f74afbea7 -Author: Nick Guenther -Date: Thu Feb 11 12:36:32 2021 -0500 - - bids-validator: README should be named just 'README' -``` - -
    - -#### Recovery Shortcut - -If you are in a pinch, _and the server is still running_, you can use its credentials instead of loading your own. - -``` -ssh root@data.neuro.polymtl.ca -su -l git -s /bin/bash -set -a && . .config/restic/s3 -mkdir -p backups -restic mount backups & -# datasets are now in backups/snapshots/*/repositories/datasets/ -``` - - - -### Troubleshooting - -If you are having a problem, please open an issue [here](https://github.com/neuropoly/data-management/issues). Please don't be shy, if you don't report the issue, we won't know about it and it will never be solved 😉 - -If the server is doing something strange, contact someone with sysadmin-access to the server. - -These people can investigate by following the gitolote guide in the [sysadmin docs](https://github.com/neuropoly/management/blob/master/docs/gitolite.md). - -### References - -* Patel, Hiren - [Wildrepos in Gitolite](https://caesr.uwaterloo.ca/wildrepos-in-gitolite/) -- detailing how a research lab manages their code and publications collaboratively through `gitolite` diff --git a/agenda-and-calendar.html b/agenda-and-calendar.html index f88eae64..2539e03d 100644 --- a/agenda-and-calendar.html +++ b/agenda-and-calendar.html @@ -227,7 +227,7 @@
  • 💾 Data diff --git a/bibliography/README.html b/bibliography/README.html index 5018faa9..46a64077 100644 --- a/bibliography/README.html +++ b/bibliography/README.html @@ -227,7 +227,7 @@
  • 💾 Data diff --git a/bibliography/deep-learning.html b/bibliography/deep-learning.html index 4c1b51fa..b9850900 100644 --- a/bibliography/deep-learning.html +++ b/bibliography/deep-learning.html @@ -227,7 +227,7 @@
  • 💾 Data diff --git a/bibliography/histology.html b/bibliography/histology.html index 4338a4c6..5f8e4966 100644 --- a/bibliography/histology.html +++ b/bibliography/histology.html @@ -227,7 +227,7 @@
  • 💾 Data diff --git a/bibliography/index.html b/bibliography/index.html index 5018faa9..46a64077 100644 --- a/bibliography/index.html +++ b/bibliography/index.html @@ -227,7 +227,7 @@
  • 💾 Data diff --git a/bibliography/lab-theses.html b/bibliography/lab-theses.html index 6a2dae5e..caf94d27 100644 --- a/bibliography/lab-theses.html +++ b/bibliography/lab-theses.html @@ -227,7 +227,7 @@
  • 💾 Data diff --git a/bibliography/mri-analysis.html b/bibliography/mri-analysis.html index 7f46963a..824de0c2 100644 --- a/bibliography/mri-analysis.html +++ b/bibliography/mri-analysis.html @@ -227,7 +227,7 @@
  • 💾 Data diff --git a/bibliography/mri.html b/bibliography/mri.html index c03cbbd5..7007d941 100644 --- a/bibliography/mri.html +++ b/bibliography/mri.html @@ -227,7 +227,7 @@
  • 💾 Data diff --git a/bibliography/shared-paperpile-folder.html b/bibliography/shared-paperpile-folder.html index af8d6b8e..2460e7b2 100644 --- a/bibliography/shared-paperpile-folder.html +++ b/bibliography/shared-paperpile-folder.html @@ -227,7 +227,7 @@
  • 💾 Data diff --git a/bibliography/spinal-cord-injury.html b/bibliography/spinal-cord-injury.html index e533d5ed..5adb63b8 100644 --- a/bibliography/spinal-cord-injury.html +++ b/bibliography/spinal-cord-injury.html @@ -227,7 +227,7 @@
  • 💾 Data diff --git a/comprehensive-exam-guide.html b/comprehensive-exam-guide.html index bc8b78ff..7bf4846d 100644 --- a/comprehensive-exam-guide.html +++ b/comprehensive-exam-guide.html @@ -227,7 +227,7 @@
  • 💾 Data diff --git a/computing-resources/README.html b/computing-resources/README.html index 42f417d9..14a04f45 100644 --- a/computing-resources/README.html +++ b/computing-resources/README.html @@ -227,7 +227,7 @@
  • 💾 Data diff --git a/computing-resources/clusters-at-criugm.html b/computing-resources/clusters-at-criugm.html index 75c189cf..c1f8fe82 100644 --- a/computing-resources/clusters-at-criugm.html +++ b/computing-resources/clusters-at-criugm.html @@ -227,7 +227,7 @@
  • 💾 Data diff --git a/computing-resources/compute-canada.html b/computing-resources/compute-canada.html index 88a6d650..59d459c9 100644 --- a/computing-resources/compute-canada.html +++ b/computing-resources/compute-canada.html @@ -227,7 +227,7 @@
  • 💾 Data diff --git a/computing-resources/index.html b/computing-resources/index.html index 42f417d9..14a04f45 100644 --- a/computing-resources/index.html +++ b/computing-resources/index.html @@ -227,7 +227,7 @@
  • 💾 Data diff --git a/computing-resources/microsoft365.html b/computing-resources/microsoft365.html index be95abd9..34905bec 100644 --- a/computing-resources/microsoft365.html +++ b/computing-resources/microsoft365.html @@ -227,7 +227,7 @@
  • 💾 Data diff --git a/computing-resources/neuropoly/README.html b/computing-resources/neuropoly/README.html index 864cc8b3..f87fe878 100644 --- a/computing-resources/neuropoly/README.html +++ b/computing-resources/neuropoly/README.html @@ -227,7 +227,7 @@
  • 💾 Data diff --git a/computing-resources/neuropoly/cpus.html b/computing-resources/neuropoly/cpus.html index 962010ea..cb2e22a6 100644 --- a/computing-resources/neuropoly/cpus.html +++ b/computing-resources/neuropoly/cpus.html @@ -227,7 +227,7 @@
  • 💾 Data diff --git a/computing-resources/neuropoly/gpus.html b/computing-resources/neuropoly/gpus.html index e4b52bfc..aee9f96c 100644 --- a/computing-resources/neuropoly/gpus.html +++ b/computing-resources/neuropoly/gpus.html @@ -227,7 +227,7 @@
  • 💾 Data diff --git a/computing-resources/neuropoly/index.html b/computing-resources/neuropoly/index.html index 864cc8b3..f87fe878 100644 --- a/computing-resources/neuropoly/index.html +++ b/computing-resources/neuropoly/index.html @@ -227,7 +227,7 @@
  • 💾 Data diff --git a/computing-resources/printer.html b/computing-resources/printer.html index cedf2bc3..8c764fb3 100644 --- a/computing-resources/printer.html +++ b/computing-resources/printer.html @@ -227,7 +227,7 @@
  • 💾 Data diff --git a/computing-resources/youtube.html b/computing-resources/youtube.html index f302a7ab..3cf195cc 100644 --- a/computing-resources/youtube.html +++ b/computing-resources/youtube.html @@ -227,7 +227,7 @@
  • 💾 Data diff --git a/conferences.html b/conferences.html index 3140e8ef..edf196f6 100644 --- a/conferences.html +++ b/conferences.html @@ -227,7 +227,7 @@
  • 💾 Data diff --git a/contact.html b/contact.html index bf17e6d2..00b01fe5 100644 --- a/contact.html +++ b/contact.html @@ -226,7 +226,7 @@
  • 💾 Data diff --git a/courses.html b/courses.html index d1ec58f8..8e06b169 100644 --- a/courses.html +++ b/courses.html @@ -227,7 +227,7 @@
  • 💾 Data diff --git a/data/README.html b/data/README.html index bb4dec68..38fa7cb3 100644 --- a/data/README.html +++ b/data/README.html @@ -227,7 +227,7 @@
  • 💾 Data @@ -459,7 +459,7 @@

    💾 Data diff --git a/data/dataset-curation.html b/data/dataset-curation.html index 9169f8d4..bed8d0b3 100644 --- a/data/dataset-curation.html +++ b/data/dataset-curation.html @@ -47,7 +47,7 @@ - + @@ -227,7 +227,7 @@

  • 💾 Data @@ -1071,7 +1071,7 @@

    Changelog policy

    next

    -

    data

    +

    data.neuro.polymtl.ca

    diff --git a/data/django.html b/data/django.html index 968a1d61..8791cb21 100644 --- a/data/django.html +++ b/data/django.html @@ -227,7 +227,7 @@

  • 💾 Data diff --git a/data/duke.html b/data/duke.html index 55d85a96..c1fa3ec8 100644 --- a/data/duke.html +++ b/data/duke.html @@ -48,7 +48,7 @@ - + @@ -227,7 +227,7 @@
  • 💾 Data @@ -631,7 +631,7 @@

    Mount with Terminal

    previous

    -

    data

    +

    data.neuro.polymtl.ca

    + + + + + + + + + Admin guide for data.neuro.polymtl.ca — NeuroPoly Internal Wiki documentation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + + + + + +
    +
    +
    +
    +
    + + + + +
    +
    + + + + + +
    + + + + + + + + + + + + + +
    + +
    + + + +
    + +
    +
    + +
    +
    + +
    + +
    + +
    + + +
    + +
    + +
    + + + + + + + + + + + + + + + + + + +
    + +
    + +
    +
    + + + +
    +

    Admin guide for data.neuro.polymtl.ca

    + +
    +
    + +
    +

    Page Contents

    +
    + +
    +
    +
    + + + + +
    + +
    +

    Admin guide for data.neuro.polymtl.ca#

    +
    +

    Warning

    +

    This needs updating following the Gitolite -> Gitea migration. See https://github.com/neuropoly/computers/issues/457. +What appears below is mostly leftover documentation that still needs to be rewritten.

    +
    +
    +

    New repository#

    +

    To make a new repo, follow this recipe.

    +

    Then, to upload it, pick a name under datasets/, e.g. “my-new-repo”, and do

    +
    git remote add origin git@data.neuro.polymtl.ca:datasets/my-new-repo
    +git branch -M master
    +# initialize remote and upload metadata
    +git push -u origin master
    +# initialize remote annex
    +git annex sync -a --no-content
    +# upload images to remote annex
    +git annex copy --to origin
    +# verify your .nii.gz files were annexed and uploaded
    +git annex whereis
    +
    +
    +
    +
    +

    Releases#

    +

    To make a release, use an annotated git tag. Use the tag name for the name of the release, and the annotation for the release notes. Our naming convention for datasets is “rYYYYMMDD”.

    +

    or, for example in a reproducible processing script, you can use clone -b to download only that specific release:

    +
    git clone --depth 1 -b r20190908 git@data.neuro.polymtl.ca:datasets/example.git
    +
    +
    +

    We are using Gitolite with git-annex as our dataset server. +It is compatible with datalad but to reduce the fragility we only support the basics.

    +

    Datasets are stored as git repositories on the server, with the bulk of their data also stored on the server in each repo’s “annex” folder. Using git-annex enables data on-demand – in our default configuration, only the data needed for the active branch is actually downloaded by a user, and it is also possible for the user to choose specific folders to focus on. Datasets are git-annex ssh remotes.

    +

    The VM is monitored here (requires VPN to connect to the dashboard monitor).

    +
    +
    +

    Backups#

    +

    Encrypted backups are sent daily to s3+https://s3.ca-central-1.amazonaws.com/data.neuro.polymtl.ca.restic and sftp://narval.computecanada.ca:projects/def-jcohen/data.neuro.polymtl.ca.restic. Daily backups are retained for the current week, weekly for the current month, and monthly for the current year.

    +

    We use a backup tool called restic and to recover files you should review its full recovery documentation to use it safely, but the quick version is that you need to provide backup credentials, one set for either location. It is your responsibility as a data server admin to ensure you have generated and can protect these credentials.

    +
    # AWS
    +export RESTIC_REPOSITORY=s3:s3.ca-central-1.amazonaws.com/data.neuro.polymtl.ca.restic
    +export RESTIC_PASSWORD="...."
    +export AWS_ACCESS_KEY_ID="...."
    +export AWS_SECRET_ACCESS_KEY="....."
    +
    +
    +
    # ComputeCanada
    +export RESTIC_REPOSITORY=sftp:narval.computecanada.ca:projects/def-jcohen/data.neuro.polymtl.ca.restic
    +export RESTIC_PASSWORD="...."
    +# you also implicitly need an account that can `ssh narval.computecanada.ca`
    +
    +
    +

    Once credentialed, the easiest way to recover files is restic mount:

    +
    mkdir data-backups
    +restic mount backups &
    +# datasets are now in backups/snapshots/*/repositories/datasets/
    +ls -l backups/snapshots/latest/repositories/datasets/
    +
    +
    +

    Then you can use git clone or rsync to recover specific old files/git objects/commits/etc

    +
    For example +

    You can examine any old version of any git repo

    +
    git@data:~$ cd backups/snapshots/2022-06-30T02\:00\:02-04\:00/repositories/datasets/uk-biobank.git/; git log HEAD~3..
    +commit 96bdd193d0da999895734a57f8bbfa275db91ad1 (HEAD -> master)
    +Author: Alexandru Foias <alexandrufoias@gmail.com>
    +Date:   Fri Feb 12 15:24:04 2021 -0500
    +
    +    Add 650 subjects
    +
    +commit 3d55fe9a3b6f04f5a6bd1b50274108de1810fcc8
    +Author: Nick Guenther <nick.guenther@polymtl.ca>
    +Date:   Thu Feb 11 12:37:26 2021 -0500
    +
    +    bids-validator: missing }
    +
    +commit 892c030faef331591048f8b6487dd65f74afbea7
    +Author: Nick Guenther <nick.guenther@polymtl.ca>
    +Date:   Thu Feb 11 12:36:32 2021 -0500
    +
    +    bids-validator: README should be named just 'README'
    +
    +
    +
    +
    +
    +

    Recovery Shortcut#

    +

    If you are in a pinch, and the server is still running, you can use its credentials instead of loading your own.

    +
    ssh root@data.neuro.polymtl.ca
    +su -l git -s /bin/bash
    +set -a && . .config/restic/s3
    +mkdir -p backups
    +restic mount backups &
    +# datasets are now in backups/snapshots/*/repositories/datasets/
    +
    +
    +
    +
    +

    Troubleshooting#

    +

    If you are having a problem, please open an issue here. Please don’t be shy, if you don’t report the issue, we won’t know about it and it will never be solved 😉

    +

    If the server is doing something strange, contact someone with sysadmin-access to the server.

    +

    These people can investigate by following the gitolote guide in the sysadmin docs.

    +
    +
    + + +
    + + + + + + +
    + +
    +
    +
    + +
    + + + +
    + + +
    +
    + + +
    + + +
    +
    +
    + + + + + +
    +
    + + \ No newline at end of file diff --git a/data/git-datasets.html b/data/git-datasets.html index 332b78e2..5640aec9 100644 --- a/data/git-datasets.html +++ b/data/git-datasets.html @@ -8,7 +8,7 @@ - data — NeuroPoly Internal Wiki documentation + data.neuro.polymtl.ca — NeuroPoly Internal Wiki documentation @@ -227,7 +227,7 @@

  • 💾 Data @@ -437,7 +437,7 @@
    -

    data

    +

    data.neuro.polymtl.ca

    @@ -447,47 +447,16 @@

    Page Contents

    @@ -499,491 +468,247 @@

    Page Contents

    -
    -

    data#

    -
    -

    Warning

    -

    This needs updating following the Gitolite -> Gitea migration. See https://github.com/neuropoly/computers/issues/457.

    -
    +
    +

    data.neuro.polymtl.ca#

    +

    Link to the web interface (only accessible from a wired connection on-campus): +https://data.neuro.polymtl.ca/

    This server includes private MRI and microscopy datasets, which have been curated and organized according to the BIDS convention.

    git+ssh://data.neuro.polymtl.ca has a max size of ~1TB.

    It hosts BIDS datasets, version-controlled using git-annex. It is locked behind a VPN because much of our data is under medical ethics protections, and needs to be kept off the general internet.

    -
    -

    Initial setup#

    -
    -

    Prerequisites#

    -
      -
    1. You must have a *nix OS with git-annex>=8 installed. See git-annex installation.

    2. -
    3. Make sure you have an ssh key.

      -
        -
      • If not, run ssh-keygen -t ed25519 -C your.name@polymtl.ca. Your keys will be in the hidden folder ~/.ssh/.

      • -
      -
    4. +
      +

      Connecting from a wired connection on-campus#

      +

      If you want to use the web interface:

      +
        +
      1. In your web browser, go to https://data.neuro.polymtl.ca/.

        +

        If this takes a long time and/or times out, it’s probably because you’re not actually using a wired (ethernet) connection on-campus. Try the next section.

        +

        If it’s the first time you visit this URL, you will probably get a security warning about the self-signed HTTPS certificate we’re using. You may have to add a security exception in your browser.

        +
      2. +
      3. Click “Sign In” at the top right of the page.

      4. +
      5. The username and password should be the same as the ones you normally use to connect to lab computers (that is, your GRAMES / GE account).

      6. +
      7. If it’s your first time using the web interface, you may want to start by changing some of your settings.

      -
      -

      Getting an account#

      -
      -

      Note

      -

      If you already have an account on a server and/or laptop, and you want to have access from a new machine, see the section on adding extra devices instead.

      -
      -

      If not already done, reopen your onboarding ticket to request to be added to the git-annex by providing the contents of your public key (examples: ~/.ssh/id_rsa.pub, ~/.ssh/id_ed25519.pub).

      -

      A public key should look like

      -
      ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDE+b5vj+WvS5l6j56NF/leMpC2xT7JUCMUWDAqvWoVmNZ7UR3dGXQeTPTlmPmxPGD2Hk9/zFzxO2kYOt9o4lHQ0QQSKLUmTyuieyJE26wL1ZiLilmTgvgMxxkxvInF/Vr78V5Ll72zAmXzUxVSvuDGY2GRjnLreYheiqg1F3xTuD68uWInX8ZwA7NDtKpoZ7Aat063vD79WBrtiCfvAMbM8QhC3294zxqAjjy9fxs+TMTqAxtKdaWCA/eCs7sx9uvtFcj2Q9jxCMB3br5HyPLotgJMoIMt+fywj+vQG907LODRcqm9J0+ih+38/3Y6aqECMkHA9WWIfFywwjeA7EGr your.name@polymtl.ca
      -
      -
      -

      or

      -
      ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJwsjlem+acuTOZGyNQKjyI7kJe9ULkhZo7N04QfC/tA your.name@polymtl.ca
      -
      -
      -

      Current server admins are:

      -
        -
      • mathieu.guay-paquet@polymtl.ca

      • -
      • mathieu.boudreau@polymtl.ca

      • -
      • nathan.gorvett@polymtl.ca

      • -
      • nick.guenther@polymtl.ca

      • -
      • joshua.newton@polymtl.ca

      • -
      • jcohen@polymtl.ca

      • -
      • eva.alonso-ortiz@polymtl.ca

      • -
      -

      The admins should follow Admin Guide > Add Users to create your account.

      -
      -
      -

      Connecting to data.neuro.polymtl.ca#

      -

      Because this server contains private medical data, you need to be on campus, connected to the VPN, or working from a server on campus, like joplin or rosenberg to access it.

      -

      If connecting from off-campus, connect to polyvpn.

      -
      -

      🏚️ Verify connectivity by running ping data.neuro.polymtl.ca. If you cannot ping then you need to double-check your VPN connection; make sure it is connected, make sure you can reach joplin, and if it still isn’t working ask the Poly network admins to unblock your account from this server.

      -
      -

      Verify you can use the server by running ssh git@data.neuro.polymtl.ca help. If it hangs, triple-check again your VPN. If it asks for git@data.neuro.polymtl.ca's password, double-check that ls -la ~/.ssh shows permissions of drwx------ for the . folder, and that the files id_ed25519 and id_ed25519.pub (or id_rsa and id_rsa.pub) exist with exactly those names. A successful connection looks like:

      -
      $ ssh git@data.neuro.polymtl.ca help
      -Enter passphrase for key '/home/kousu/.ssh/id_ed25519.neuropoly': 
      -hello yourusername, this is git@data running gitolite3 3.6.11-2 (Debian) on git 2.27.0
      -
      -list of remote commands available:
      -
      -	D
      -	create
      -	desc
      -	git-annex-shell
      -	help
      -	info
      -	keys
      -	perms
      -	readme
      -	writable
      -
      -
      -
      -
    -
    -

    Usage#

    -

    During daily usage, you will need to be on the polyvpn network to access the server.

    -

    You should also make sure to configure git annex for the best performance.

    -
    -

    List#

    -

    To see what datasets you have available, use info, for example:

    -
    ssh git@data.neuro.polymtl.ca info
    -
    -
    -

    And the output would look like this:

    -
    hello yourusername, this is git@data running gitolite3 3.6.11-2 (Debian) on git 2.27.0
    - R      datasets/..*
    - R      datasets/basel-mp2rage
    - R W    datasets/bavaria-quebec-spine-ms
    -...
    -
    -
    -

    You are identified to the server by your ssh keys, but notice that this tells you the username you are known as.

    -
    -
    -

    Download#

    -

    To download an existing repository use git clone:

    -
    git clone git@data.neuro.polymtl.ca:datasets/<dataset_name> 	# download folders and metadata
    -cd <dataset_name>
    -
    -
    -

    After running git clone git@data.neuro.polymtl.ca:datasets/<dataset_name>, only metadata and small-size files such as .json sidecars are cloned (downloaded). In other words, you can access the content of the .json sidecars but can not open image .nii files.

    -

    To download all image .nii files, run:

    -
    git annex get . 						# download images
    -
    -
    -

    If you just want to explore, you can opt for a portion of the image .nii files by specifying paths instead of the last step, for example:

    -
    git annex get sub-karo*                                        	# download images under any of sub-karo*/*
    -
    -
    -
    -

    Note: If you want to download images together with corresponding derivatives files for a specific subject(s), use:

    -
    -
    git annex get {./,derivatives/**/}sub-karo*                       # download images and derivatives for sub-karo* subjects
    -
    -
    -
    -
    -

    Update#

    -

    If you have already cloned a repository and you would like to get its latest version, do:

    -
    git pull && git annex sync --no-content && git annex get .
    -
    -
    -
    -
    -

    Upload#

    -

    Despite not being hosted on Github, we are still using a pull-request workflow. -So, to make changes to a dataset, first ask an admin to grant you upload rights, then make a working branch for your changes. If your initials are xy and you are working on some-topic:

    -
    -

    Note

    -

    If you are uploading data to a dataset for the first time, run git annex dead here to configure your local clone of the repository.

    -
    -
    git checkout -b xy/some-topic master
    -# Edit your files, add new ones, etc. 
    -# Add all modified files to be commited
    -git add .
    -# To add specific files, do: git add path/to/new/file
    -# Commit and write a useful commit message
    -git commit
    -
    -
    -

    The first time before uploading, verify you have access with info. You need “W” (for “Write”) permission, like this:

    -
    ssh git@data.neuro.polymtl.ca info datasets/uk-biobank
    -
    -
    -

    The output would look like:

    -
    hello yourusername, this is git@data running gitolite3 3.6.11-2 (Debian) on git 2.27.0
    -
    - R W    datasets/uk-biobank
    -
    -
    -

    Once you have access you should:

    -
    git annex copy --all --to=origin
    -git annex sync --no-content --only-annex
    -git push
    -
    -
    -

    Finally, ask one of that dataset’s reviewers to look at your pull request by opening an issue (not creating a new pull request) on neuropoly/data-management. The details of your pull request (i.e. the changes made to the dataset) must be explained in the issue along with name of your branch on which the changes can be found.

    -
    -

    Note

    -

    You do not have to open an issue if your change is small, such as updating a single image. Instead, describe your change in the commit message and ask one of that dataset’s reviewers by Slack.

    -
    -

    If you are uploading changes gradually, you can reuse the same branch:

    -
    # First, update your local master branch:
    -git checkout master
    -git pull && git annex sync --no-content
    -
    -# Then, bring your branch up to include the recent changes:
    -git checkout branch_you_are_reusing
    -git merge --ff-only master
    -git pull && git annex sync --no-content
    -
    -# Then, modify a file and make a new commit:
    -git add .
    -git commit
    -git push origin branch_you_are_reusing
    -
    -
    -
    -
    -

    Reviewing Pull Requests#

    -

    If someone asks you to review their changes on branch xy/some-topic:

    -
    git fetch
    -git checkout xy/some-topic
    -git annex get .
    -
    -
    -

    Then look at the branch to see if it looks right to you.

    -

    To investigate what changed:

    -
    # list changed files
    -git diff --name-only master..HEAD
    -# list changed files (each commit)
    -git log --stat master..HEAD
    -# to see content, overall
    -git diff master..HEAD
    -# to see content, commit-by-commit
    -git log -p master..HEAD
    -
    -
    -

    Also, it’s a good idea to run:

    -
    git annex whereis
    -
    -
    -

    To check that all the annexed files have been uploaded.

    -
    -

    🏚️ git-annex is not well-suited to a pull-request flow. It is mostly designed for a single person to share data among many computers, not for multiple people to share data between a few computers. We can make it work but it needs some patience. Have a cat to make it better: 🐈🌺

    -
    -
    -

    Commit Rights#

    -

    Each repo has its own OWNERS group attached. These are the people allowed to commit to master, and usually they should be the reviewers as well.

    -

    In order to join this group, someone already in it needs to grant you access:

    -
    ssh git@data.neuro.polymtl.ca perms datasets/my-new-repo + OWNERS yourusername
    -
    -
    -

    You can check if you have commit rights to a dataset “my-new-repo” by seeing if you appear in the group:

    -
    ssh git@data.neuro.polymtl.ca perms datasets/my-new-repo -l | grep OWNERS
    -
    -
    -
    -
    -

    Committing#

    -

    Once a branch is finalized:

    -
    git checkout master
    -git merge --ff-only xy/some-topic
    -# or use git pull --squash xy/some-topic
    -git push
    -# no need for git-annex sync here, no annex files have been moved
    -
    -
    -

    (Optional) Clean up the branch:

    -
    git branch -d xy/some-topic
    -# redundancy
    -git branch -d synced/xy/some-topic
    -git push origin :xy/some-topic
    -git push origin :synced/xy/some-topic
    -
    -
    -
    -
    -
    -

    New repository#

    -
    -

    Note

    -

    Only NeuroPoly admnistrators have the needed privileges to create a new repository. Please contact the admins on the #database_mri Slack channel for assistance; they’ll create a new empty repository for you and grant you write privileges so that you can add your dataset in a git branch and open a pull-request.

    -
    -

    To make a new repo, follow this recipe.

    -

    Then, to upload it, pick a name under datasets/, e.g. “my-new-repo”, and do

    -
    git remote add origin git@data.neuro.polymtl.ca:datasets/my-new-repo
    -git branch -M master
    -# initialize remote and upload metadata
    -git push -u origin master
    -# initialize remote annex
    -git annex sync -a --no-content
    -# upload images to remote annex
    -git annex copy --to origin
    -# verify your .nii.gz files were annexed and uploaded
    -git annex whereis
    +
    +

    Connecting from wifi or off-campus#

    +

    If you want to use the web interface:

    +
      +
    1. If you’re off-campus: first connect to the VPN.

    2. +
    3. Next, set up port forwarding for the duration of your task, by running the following command in a terminal window. You should replace "$USER" with your GRAMES / GE username:

      +
      ssh -N -L 3000:localhost:3000 "$USER"@data.neuro.polymtl.ca
       
      +

      This command won’t produce any output while it’s running. Once you’re done using the web interface, you should terminate the SSH command with ctrl-C.

      +
    4. +
    5. In your web browser, go to http://localhost:3000/.

      +

      Note that this is an HTTP (not HTTPS) address, but your connection to the server is protected by SSH. This also means that you won’t have to accept the server’s self-signed HTTPS certificate.

      +
    6. +
    7. Click “Sign In” at the top right of the page.

    8. +
    9. The username and password is the same as your GRAMES / GE account, again.

    10. +
    11. If it’s your first time using the web interface, you may want to start by changing some of your settings.

    12. +
    13. Remember to terminate the SSH command with ctrl-C when you’re done using the web interface.

    14. +
    -
    -

    Releases#

    -

    To make a release, use an annotated git tag. Use the tag name for the name of the release, and the annotation for the release notes. Our naming convention for datasets is “rYYYYMMDD”.

    -

    For example, if today is September 8th, 2019, then to create a release do:

    -
    git tag -a r20190908
    -
    -
    -

    To view available releases, first download a dataset, then run

    -
    git tag -l
    +
    +

    Initial setup#

    +

    While you’re logged in to the web interface:

    +
      +
    1. (Optional) You may want to change the default language between French and English.

      +
        +
      1. Click your user icon at the top right of any page.

      2. +
      3. Select “Configuration” or “Settings” in the menu that unrolls.

      4. +
      5. Select “Apparence” or “Appearance” in the left menu bar.

      6. +
      7. Update the “Langue” or “Language” selection.

      8. +
      9. Click “Modifier la langue” or “Update Language”.

      10. +
      +
    2. +
    3. (Optional) You may want to change your user icon, instead of using the auto-generated abstract art.

      +
        +
      1. Click your user icon at the top right of any page.

      2. +
      3. Select “Settings” in the menu that unrolls.

      4. +
      5. Select “Profile” in the left menu bar.

      6. +
      7. Next to “Choose new avatar”, click the “Browse…” button.

      8. +
      9. Select the user image file you want to upload.

      10. +
      11. Click “Update Avatar”.

      12. +
      +
    4. +
    5. (Recommended) Set up command-line access with an SSH key. +(This needs to be done once for each computer you use.)

      +
        +
      1. Get your SSH key from the terminal:

        +
          +
        1. Check whether you already have an SSH key:

        2. +
        +
        ls ~/.ssh/id_ed25519.pub
         
        -

        To see the release notes for a specific release, use

        -
        git show r20190908
        +
          +
        1. If the above file doesn’t exist, create it with this command:

          +
          ssh-keygen -t ed25519
           
          -

          To use a specific release, either download the dataset and then

          -
          git checkout r20190908
          +
        2. +
        3. Display the public part of your SSH key:

          +
          cat ~/.ssh/id_ed25519.pub
           
          -

          or, for example in a reproducible processing script, you can use clone -b to download only that specific release:

          -
          git clone --depth 1 -b r20190908 git@data.neuro.polymtl.ca:datasets/example.git
          +

          It should be a single line of text that looks something like this:

          +
          ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIEWpqMuw5ifj87tdl12x5+LJ3uqHdfFQmoVQKsDLjKYG your.user.name@some.computer.name
           
          -
    -
    -

    Permissions#

    -

    You can grant others permissions to your repositories with perms.

    -
    ssh git@data.neuro.polymtl.ca perms datasets/my-new-repo + WRITERS someone # grant someone upload rights
    -ssh git@data.neuro.polymtl.ca perms datasets/my-new-repo - WRITERS someone # revoke someone's upload rights
    -ssh git@data.neuro.polymtl.ca perms datasets/my-new-repo + OWNERS researcher2 # grant someone rights to add (and remove) others and to merge to master
    -ssh git@data.neuro.polymtl.ca perms datasets/my-new-repo -l # view users
    -ssh git@data.neuro.polymtl.ca perms datasets/my-new-repo -lr # view access rules
    +
  • + + +
  • Put the SSH key in the web interface:

    +
      +
    1. Click your user icon at the top right of any page.

    2. +
    3. Select “Settings” in the menu that unrolls.

    4. +
    5. Select “SSH / GPG Keys” in the left menu bar.

    6. +
    7. To the right of the heading “Manage SSH Keys”, click “Add Key”.

    8. +
    9. Paste the contents of the file ~/.ssh/id_ed25519.pub into the “Content” box.

    10. +
    11. Click “Add Key” below.

    12. +
    +
  • +
  • Test your SSH key from the terminal with the command:

    +
    ssh git@data.neuro.polymtl.ca
     
    -

    Use

    -
    ssh git@data.neuro.polymtl.ca perms -h
    +

    It might ask for the passphrase for your key ~/.ssh/id_ed25519.pub. It should output something like this:

    +
    PTY allocation request failed
    +Hi there, "$USER"! You've successfully authenticated with the key named "$EMAIL", but Gitea does not provide shell access.
    +If this is unexpected, please log in with password and setup Gitea under another user.
    +Shared connection to data.neuro.polymtl.ca closed.
     
    -

    and see https://gitolite.com/gitolite/user#setget-additional-permissions-for-repos-you-created for full details.

    - -
    -

    Renaming#

    -

    There is no way for a user to rename a repo directly (bug report). -You can ask an admin to do it.

    -
    -
    -

    Deletion#

    -

    If you created or own a repo and decide it is no longer necessary:

    -
    ssh git@data.neuro.polymtl.ca D trash repo
    +

    If it asks for a password for git@data.neuro.polymtl.ca, or the output ends with this, then it didn’t work and you should ask for help:

    +
    ...
    +git@data.neuro.polymtl.ca: Permission denied (publickey,password).
     
    -

    The “trash” is cleaned out after a week. Except it’s not, yet: https://github.com/neuropoly/data-management/issues/54

    -
    -

    Deleting a branch#

    -

    If you no longer are working on a specific, make sure that it is deleted (in order to save space and avoid maintaining unnecessary commit history). The relevant commands can be found under Clean up a branch here.

    -
    -
    -
    -

    Add extra devices#

    -

    Like with Github, you can authorize any number of secondary devices. Assuming you already have authorization on your computer and want to authorize yourself on joplin, here is the procedure:

    -
      -
    • Log on to joplin via ssh :

      -
        -
      • If you already have a ssh key, you can get it by looking into ~/.ssh/: the key will either be id_rsa.pub or id_ed25519.pub. You can display it by doing: cat ~/.ssh/id_*.pub. Now that you have the public key, copy it.

      • -
      • If you don’t have a public key, generate it by running ssh-keygen. Then copy it using the explanation above.

      • -
    • -
    • In a terminal on your computer (either at NeuroPoly or on a VPN):

      -
        -
      • Check if you have access to git annex by doing: ssh git@data.neuro.polymtl.ca info

      • -
      • Then, from here, you can add the public key you copied from joplin by doing : ssh git@data.neuro.polymtl.ca keys add @joplin (this will create a new point of access to git annex with your account called ‘joplin’). This asks for the public part of the new ssh key created on joplin. Copy-paste the contents of the file and press Enter!

      • -
      +
    • -
    -

    Once added, you should be able to see the newly added key by running:

    -
    ssh git@data.neuro.polymtl.ca keys list
    -
    -
    +
  • (Recommended) Make sure you have git and git-annex installed on your computer. See git-annex installation.

  • +
    +
    +

    Listing the available datasets#

    +

    To view the existing repositories, connect to the web interface and use the “Explore” tab, which is linked from the top of every page. Keep in mind that there are multiple pages, so either use the search box or click “Next” if you’re looking for a specific repository or username.

    -
    -

    Admin Guide#

    -

    We are using Gitolite with git-annex as our dataset server. -It is compatible with datalad but to reduce the fragility we only support the basics.

    -

    Datasets are stored as git repositories on the server, with the bulk of their data also stored on the server in each repo’s “annex” folder. Using git-annex enables data on-demand – in our default configuration, only the data needed for the active branch is actually downloaded by a user, and it is also possible for the user to choose specific folders to focus on. Datasets are git-annex ssh remotes.

    -

    gitolite manages users and their permissions. The repositories containing datasets are under data.neuro.polymtl.ca:datasets/*, and the server also contains a few admin-only repositories outside of datasets/*.

    -

    The VM is monitored here (requires VPN to connect to the dashboard monitor).

    -
    -

    List users#

    -
    ssh git@data.neuro.polymtl.ca keys list
    +
    +

    Connecting from the command-line (cloning a repo)#

    +

    If you just want to run git commands from the command-line (clone, pull, push, etc.):

    +
      +
    1. If you’re off-campus: first connect to the VPN.

      +

      Note that there’s no need to do SSH port forwarding.

      +
    2. +
    3. To make a local clone, replace "$REPO" with the actual repository name in the following commands:

      +
      git clone git@data.neuro.polymtl.ca:datasets/"$REPO"
      +cd "$REPO"
      +git annex dead here
      +git annex get
       
      +

      If the clone command fails, it’s possible that you need to tell the server about your computer’s SSH public key. See the section on doing the initial setup.

      +
    4. +
    5. All other git commands should work normally.

    6. +
    -
    -

    Add users#

    -

    To grant access to a lab member, as above, ask the lab member to generate an ssh key using ssh-keygen and have them send you the public key. Save it to a file firstnamelastname.pub and add them with

    -
    cat firstnamelastname.pub | ssh git@data.neuro.polymtl.ca keys add firstnamelastname
    -
    -
    -

    You can also paste the key in, followed by ctrl-d; this looks like:

    -
    ssh git@data.neuro.polymtl.ca keys add firstnamelastname
    -
    -
    -

    The output looks like:

    -
    Enter passphrase for key '/home/kousu/.ssh/id_rsa.github': 
    -please supply the new key on STDIN (e.g. cat you.pub | ssh gitolite@git.example.com keys add @laptop).
    -ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAID11N3hQpJP4Okivd5xO3N0CuO24ioMwXYv+l/1PM/+z firstname.lastname@polymtl.ca
    -Added SHA256:hwil2tmaw/prgIBX5odO8vOAj2i38gPrUGjGZnnkVvo : firstnamelastname.pub
    +
    +

    Getting changes from the server#

    +

    If you have already cloned a repository and would like to get the latest version:

    +
      +
    1. Make sure you’re on the right branch, and all your changes are saved, and you have a clean worktree. The command git status should say:

      +
      On branch "$BRANCH"
      +...
      +nothing to commit, working tree clean
       
      -

      You should use the person’s full name as their username, in the form firstnamelastname, with no spaces or periods or anything. It’s essentially an arbitrary string that the user doesn’t really need to know, since everyone is authenticated using just their public/private keys without supplying a username. The only time users see them is when they run info or use perms. We would like to use the format firstname.lastname@polymtl.ca, but there is a bug, so just use firstnamelastname. Once someone is registered they can add and remove their own keys without having to know their username.

      -
    -
    -

    Permissions#

    -

    As admin, you can add or revoke any permissions to any repo using perms.

    -

    There is unfortunately no way to view permissions as another user so you will need to rely on people sending you screenshots if they are having problems -but you can at least inspect the active sets of permissions on a repo with

    -
    ssh git@data.neuro.polymtl.ca perms <repo> -l
    +
  • +
  • Run the command:

    +
    git annex pull
     
    -

    If you need to add new namespaces or finer grained permissions, first, reconsider if the extra complexity and the risk of locking yourself out is worth it. Everything you should need to manage the lab should be doable via ssh git@data.neuro.polymtl.ca help. If you are sure, then review gitolite’s permissions model and official docs for this use case, then:

    -
    git clone git@data.neuro.polymtl.ca:gitolite-admin
    -cd gitolite-admin
    -vi conf/gitolite.conf  # optional: investigate/change the repo definitions
    -ls -R keydir/          # optional: investigate/change who has access; this *should* be unnecessary, use `keys` as above instead.
    -git add -u . && git push
    +

    If your version of git-annex is older, you may need to use this command instead:

    +
    git annex sync --content --no-push
     
    +
  • + -
    -

    Renaming#

    -

    As an admin, you can rename a repo by connecting to the server directly:

    -
    ssh root@data.neuro.polymtl.ca
    -sudo -u git -i
    -cd repositories/datasets/
    -mv $dataset.git $new_name.git
    -
    -
    +
    +

    Getting write access to a repository#

    +

    By default, all lab members have read access to all repositories, so you can clone repositories and pull changes from the server. If you want to open issues or push changes to the server, you will need write access to the repository in question.

    +

    To get write access to a repository, ask one of the current admins. They will need to use the web interface, go to the repository’s “Settings” tab, and add your username to the list of “Collaborators”.

    -
    -

    Deletion#

    -

    You can also delete any repo using D.

    -

    You can also get rid of a dataset immediately by:

    -
    ssh git@data.neuro.polymtl.ca D unlock datasets/<dataset>
    -ssh git@data.neuro.polymtl.ca D rm datasets/<dataset>
    -
    -
    +
    +

    Opening an issue#

    +

    If you’re working with a dataset, and you notice that something is wrong, or something could be better, consider opening an issue!

    +
      +
    1. If it’s your first issue or pull request for the repository, ask for write access.

    2. +
    3. In the web interface, go to the repository page.

    4. +
    5. Click on the “Issues” tab.

    6. +
    7. Click “New Issue”.

    8. +
    9. Fill in the title and describe the issue in as little or as much detail as you want.

    10. +
    11. Click “Create Issue”.

    12. +
    -
    -

    Backups#

    -

    Encrypted backups are sent daily to s3+https://s3.ca-central-1.amazonaws.com/data.neuro.polymtl.ca.restic and sftp://narval.computecanada.ca:projects/def-jcohen/data.neuro.polymtl.ca.restic. Daily backups are retained for the current week, weekly for the current month, and monthly for the current year.

    -

    We use a backup tool called restic and to recover files you should review its full recovery documentation to use it safely, but the quick version is that you need to provide backup credentials, one set for either location. It is your responsibility as a data server admin to ensure you have generated and can protect these credentials.

    -
    # AWS
    -export RESTIC_REPOSITORY=s3:s3.ca-central-1.amazonaws.com/data.neuro.polymtl.ca.restic
    -export RESTIC_PASSWORD="...."
    -export AWS_ACCESS_KEY_ID="...."
    -export AWS_SECRET_ACCESS_KEY="....."
    -
    -
    -
    # ComputeCanada
    -export RESTIC_REPOSITORY=sftp:narval.computecanada.ca:projects/def-jcohen/data.neuro.polymtl.ca.restic
    -export RESTIC_PASSWORD="...."
    -# you also implicitly need an account that can `ssh narval.computecanada.ca`
    +
    +

    Making a pull request#

    +

    If you want to modify a dataset, you should make a pull request, which can then be reviewed and merged into the master branch.

    +
      +
    1. First make sure you have a local clone of the repo, and that it’s up to date.

    2. +
    3. Create a new branch for your work, starting from the current master branch. If your initials are xyz and you want to work on some-topic, your branch should be called xyz/some-topic. From inside your local clone of the repo, use the command:

      +
      git checkout -b xyz/some-topic master
       
      -

      Once credentialed, the easiest way to recover files is restic mount:

      -
      mkdir data-backups
      -restic mount backups &
      -# datasets are now in backups/snapshots/*/repositories/datasets/
      -ls -l backups/snapshots/latest/repositories/datasets/
      +
    4. +
    5. Make the changes you want to the files in the repo, then save the changes in a commit (or several commits). You can use the commands:

      +
      git add .
      +git commit
       
      -

      Then you can use git clone or rsync to recover specific old files/git objects/commits/etc

      -
      For example -

      You can examine any old version of any git repo

      -
      git@data:~$ cd backups/snapshots/2022-06-30T02\:00\:02-04\:00/repositories/datasets/uk-biobank.git/; git log HEAD~3..
      -commit 96bdd193d0da999895734a57f8bbfa275db91ad1 (HEAD -> master)
      -Author: Alexandru Foias <alexandrufoias@gmail.com>
      -Date:   Fri Feb 12 15:24:04 2021 -0500
      -
      -    Add 650 subjects
      -
      -commit 3d55fe9a3b6f04f5a6bd1b50274108de1810fcc8
      -Author: Nick Guenther <nick.guenther@polymtl.ca>
      -Date:   Thu Feb 11 12:37:26 2021 -0500
      -
      -    bids-validator: missing }
      -
      -commit 892c030faef331591048f8b6487dd65f74afbea7
      -Author: Nick Guenther <nick.guenther@polymtl.ca>
      -Date:   Thu Feb 11 12:36:32 2021 -0500
      -
      -    bids-validator: README should be named just 'README'
      +
    6. +
    7. For the previous steps, only read access was needed. For the following steps, you will need write access.

    8. +
    9. To push the changes to the server (both the changes in your branch xyz/some-topic and in the special branch git-annex), you can use the command:

      +
      git annex push
       
      - -
      -

      Recovery Shortcut#

      -

      If you are in a pinch, and the server is still running, you can use its credentials instead of loading your own.

      -
      ssh root@data.neuro.polymtl.ca
      -su -l git -s /bin/bash
      -set -a && . .config/restic/s3
      -mkdir -p backups
      -restic mount backups &
      -# datasets are now in backups/snapshots/*/repositories/datasets/
      +

      If your version of git-annex is older, you may need to use this command instead:

      +
      git annex sync --all --content
       
      +
    10. +
    11. On the web interface https://data.neuro.polymtl/ca/, open a pull request:

      +
        +
      1. Go the the repository’s page.

      2. +
      3. Click on the “Pull Requests” tab.

      4. +
      5. Click the “New Pull Request” button.

      6. +
      7. Leave the dropdown menu that says “merge into: datasets:master” as it is.

      8. +
      9. Select your branch datasets:xyz/some-topic in the “pull from:” dropdown menu. A preview of your changes should appear below.

      10. +
      11. Click the “New Pull Request” button that appeared below.

      12. +
      13. Enter a title and a description of your changes, along with any relevant context, in the text boxes that appeared.

      14. +
      15. Click “Create Pull Request”.

      16. +
      +
    12. +
    -
    -
    -

    Troubleshooting#

    -

    If you are having a problem, please open an issue here. Please don’t be shy, if you don’t report the issue, we won’t know about it and it will never be solved 😉

    -

    If the server is doing something strange, contact someone with sysadmin-access to the server.

    -

    These people can investigate by following the gitolote guide in the sysadmin docs.

    -
    -
    -

    References#

    +
    +

    Getting help#

    +

    If you need help with anything related to https://data.neuro.polymtl.ca/, your best bet is to post a question on the #database_mri Slack channel.

    +

    The usual server admins are:

      -
    • Patel, Hiren - Wildrepos in Gitolite – detailing how a research lab manages their code and publications collaboratively through gitolite

    • +
    • mathieu.guay-paquet@polymtl.ca

    • +
    • emma.lichtenstein@polymtl.ca

    • +
    +

    In case of emergency, these people also have admin access:

    +
      +
    • eva.alonso-ortiz@polymtl.ca

    • +
    • jcohen@polymtl.ca

    • +
    • joshua.newton@polymtl.ca

    • +
    • mathieu.boudreau@polymtl.ca

    • +
    • nathan.gorvett@polymtl.ca

    -
    @@ -1032,47 +757,16 @@

    References diff --git a/data/index.html b/data/index.html index bb4dec68..38fa7cb3 100644 --- a/data/index.html +++ b/data/index.html @@ -227,7 +227,7 @@
  • 💾 Data @@ -459,7 +459,7 @@

    💾 Data diff --git a/edi.html b/edi.html index c56ab7ee..668684c5 100644 --- a/edi.html +++ b/edi.html @@ -227,7 +227,7 @@

  • 💾 Data diff --git a/geek-tips/README.html b/geek-tips/README.html index be3393f4..f0e75286 100644 --- a/geek-tips/README.html +++ b/geek-tips/README.html @@ -227,7 +227,7 @@
  • 💾 Data diff --git a/geek-tips/bash-shell/README.html b/geek-tips/bash-shell/README.html index cc625414..eed77b49 100644 --- a/geek-tips/bash-shell/README.html +++ b/geek-tips/bash-shell/README.html @@ -227,7 +227,7 @@
  • 💾 Data diff --git a/geek-tips/bash-shell/index.html b/geek-tips/bash-shell/index.html index cc625414..eed77b49 100644 --- a/geek-tips/bash-shell/index.html +++ b/geek-tips/bash-shell/index.html @@ -227,7 +227,7 @@
  • 💾 Data diff --git a/geek-tips/bash-shell/script.html b/geek-tips/bash-shell/script.html index 2c47dff7..135002ae 100644 --- a/geek-tips/bash-shell/script.html +++ b/geek-tips/bash-shell/script.html @@ -227,7 +227,7 @@
  • 💾 Data diff --git a/geek-tips/deep-learning/README.html b/geek-tips/deep-learning/README.html index a1868f38..d8844438 100644 --- a/geek-tips/deep-learning/README.html +++ b/geek-tips/deep-learning/README.html @@ -227,7 +227,7 @@
  • 💾 Data diff --git a/geek-tips/deep-learning/conditional-random-fields-crf.html b/geek-tips/deep-learning/conditional-random-fields-crf.html index 2b9987a0..630a6271 100644 --- a/geek-tips/deep-learning/conditional-random-fields-crf.html +++ b/geek-tips/deep-learning/conditional-random-fields-crf.html @@ -227,7 +227,7 @@
  • 💾 Data diff --git a/geek-tips/deep-learning/cuda.html b/geek-tips/deep-learning/cuda.html index 400c4444..b969be16 100644 --- a/geek-tips/deep-learning/cuda.html +++ b/geek-tips/deep-learning/cuda.html @@ -227,7 +227,7 @@
  • 💾 Data diff --git a/geek-tips/deep-learning/index.html b/geek-tips/deep-learning/index.html index a1868f38..d8844438 100644 --- a/geek-tips/deep-learning/index.html +++ b/geek-tips/deep-learning/index.html @@ -227,7 +227,7 @@
  • 💾 Data diff --git a/geek-tips/deep-learning/misc.html b/geek-tips/deep-learning/misc.html index 4e149948..5816bfeb 100644 --- a/geek-tips/deep-learning/misc.html +++ b/geek-tips/deep-learning/misc.html @@ -227,7 +227,7 @@
  • 💾 Data diff --git a/geek-tips/deep-learning/restricted-boltzmann-machines.html b/geek-tips/deep-learning/restricted-boltzmann-machines.html index 11fe0432..6fa9df52 100644 --- a/geek-tips/deep-learning/restricted-boltzmann-machines.html +++ b/geek-tips/deep-learning/restricted-boltzmann-machines.html @@ -227,7 +227,7 @@
  • 💾 Data diff --git a/geek-tips/deep-learning/tensorflow.html b/geek-tips/deep-learning/tensorflow.html index e2189843..d09b2df7 100644 --- a/geek-tips/deep-learning/tensorflow.html +++ b/geek-tips/deep-learning/tensorflow.html @@ -227,7 +227,7 @@
  • 💾 Data diff --git a/geek-tips/git-annex.html b/geek-tips/git-annex.html index d7944b3e..47ead529 100644 --- a/geek-tips/git-annex.html +++ b/geek-tips/git-annex.html @@ -227,7 +227,7 @@
  • 💾 Data diff --git a/geek-tips/git.html b/geek-tips/git.html index bfaf9fbb..d50c0574 100644 --- a/geek-tips/git.html +++ b/geek-tips/git.html @@ -227,7 +227,7 @@
  • 💾 Data diff --git a/geek-tips/image-processing-software/README.html b/geek-tips/image-processing-software/README.html index 01142004..62bdffbc 100644 --- a/geek-tips/image-processing-software/README.html +++ b/geek-tips/image-processing-software/README.html @@ -227,7 +227,7 @@
  • 💾 Data diff --git a/geek-tips/image-processing-software/advanced-normalization-tools-ants.html b/geek-tips/image-processing-software/advanced-normalization-tools-ants.html index 0cc8ad9f..80996fb8 100644 --- a/geek-tips/image-processing-software/advanced-normalization-tools-ants.html +++ b/geek-tips/image-processing-software/advanced-normalization-tools-ants.html @@ -227,7 +227,7 @@
  • 💾 Data diff --git a/geek-tips/image-processing-software/anima.html b/geek-tips/image-processing-software/anima.html index cd5d8e69..03cad889 100644 --- a/geek-tips/image-processing-software/anima.html +++ b/geek-tips/image-processing-software/anima.html @@ -227,7 +227,7 @@
  • 💾 Data diff --git a/geek-tips/image-processing-software/diffusion-simulator.html b/geek-tips/image-processing-software/diffusion-simulator.html index f19a1fab..87528838 100644 --- a/geek-tips/image-processing-software/diffusion-simulator.html +++ b/geek-tips/image-processing-software/diffusion-simulator.html @@ -227,7 +227,7 @@
  • 💾 Data diff --git a/geek-tips/image-processing-software/freesurfer.html b/geek-tips/image-processing-software/freesurfer.html index b7f29a33..225e83f5 100644 --- a/geek-tips/image-processing-software/freesurfer.html +++ b/geek-tips/image-processing-software/freesurfer.html @@ -227,7 +227,7 @@
  • 💾 Data diff --git a/geek-tips/image-processing-software/fsl/README.html b/geek-tips/image-processing-software/fsl/README.html index c8a6fae0..cc23a5c6 100644 --- a/geek-tips/image-processing-software/fsl/README.html +++ b/geek-tips/image-processing-software/fsl/README.html @@ -227,7 +227,7 @@
  • 💾 Data diff --git a/geek-tips/image-processing-software/fsl/fsleyes.html b/geek-tips/image-processing-software/fsl/fsleyes.html index 1e29faf1..bf0b9398 100644 --- a/geek-tips/image-processing-software/fsl/fsleyes.html +++ b/geek-tips/image-processing-software/fsl/fsleyes.html @@ -227,7 +227,7 @@
  • 💾 Data diff --git a/geek-tips/image-processing-software/fsl/index.html b/geek-tips/image-processing-software/fsl/index.html index c8a6fae0..cc23a5c6 100644 --- a/geek-tips/image-processing-software/fsl/index.html +++ b/geek-tips/image-processing-software/fsl/index.html @@ -227,7 +227,7 @@
  • 💾 Data diff --git a/geek-tips/image-processing-software/index.html b/geek-tips/image-processing-software/index.html index 01142004..62bdffbc 100644 --- a/geek-tips/image-processing-software/index.html +++ b/geek-tips/image-processing-software/index.html @@ -227,7 +227,7 @@
  • 💾 Data diff --git a/geek-tips/image-processing-software/itk-snap.html b/geek-tips/image-processing-software/itk-snap.html index 15204541..fcfbba63 100644 --- a/geek-tips/image-processing-software/itk-snap.html +++ b/geek-tips/image-processing-software/itk-snap.html @@ -227,7 +227,7 @@
  • 💾 Data diff --git a/geek-tips/image-processing-software/nifti.html b/geek-tips/image-processing-software/nifti.html index 094b57e4..6fa87fd8 100644 --- a/geek-tips/image-processing-software/nifti.html +++ b/geek-tips/image-processing-software/nifti.html @@ -227,7 +227,7 @@
  • 💾 Data diff --git a/geek-tips/image-processing-software/openneuro-cli.html b/geek-tips/image-processing-software/openneuro-cli.html index 41ca8da7..36c18f11 100644 --- a/geek-tips/image-processing-software/openneuro-cli.html +++ b/geek-tips/image-processing-software/openneuro-cli.html @@ -227,7 +227,7 @@
  • 💾 Data diff --git a/geek-tips/image-processing-software/osirix.html b/geek-tips/image-processing-software/osirix.html index 8fa62470..a30ee606 100644 --- a/geek-tips/image-processing-software/osirix.html +++ b/geek-tips/image-processing-software/osirix.html @@ -227,7 +227,7 @@
  • 💾 Data diff --git a/geek-tips/index.html b/geek-tips/index.html index be3393f4..f0e75286 100644 --- a/geek-tips/index.html +++ b/geek-tips/index.html @@ -227,7 +227,7 @@
  • 💾 Data diff --git a/geek-tips/misc/README.html b/geek-tips/misc/README.html index c150fe21..bc852312 100644 --- a/geek-tips/misc/README.html +++ b/geek-tips/misc/README.html @@ -227,7 +227,7 @@
  • 💾 Data diff --git a/geek-tips/misc/bitbucket.html b/geek-tips/misc/bitbucket.html index de3deca4..c1d3dfbb 100644 --- a/geek-tips/misc/bitbucket.html +++ b/geek-tips/misc/bitbucket.html @@ -227,7 +227,7 @@
  • 💾 Data diff --git a/geek-tips/misc/docker/README.html b/geek-tips/misc/docker/README.html index 6f171a24..323e0cff 100644 --- a/geek-tips/misc/docker/README.html +++ b/geek-tips/misc/docker/README.html @@ -227,7 +227,7 @@
  • 💾 Data diff --git a/geek-tips/misc/docker/docker-for-deep-learning.html b/geek-tips/misc/docker/docker-for-deep-learning.html index 72965cd6..1c6f9db3 100644 --- a/geek-tips/misc/docker/docker-for-deep-learning.html +++ b/geek-tips/misc/docker/docker-for-deep-learning.html @@ -227,7 +227,7 @@
  • 💾 Data diff --git a/geek-tips/misc/docker/index.html b/geek-tips/misc/docker/index.html index 6f171a24..323e0cff 100644 --- a/geek-tips/misc/docker/index.html +++ b/geek-tips/misc/docker/index.html @@ -227,7 +227,7 @@
  • 💾 Data diff --git a/geek-tips/misc/dropbox.html b/geek-tips/misc/dropbox.html index f8c6a9dc..569f4fb0 100644 --- a/geek-tips/misc/dropbox.html +++ b/geek-tips/misc/dropbox.html @@ -227,7 +227,7 @@
  • 💾 Data diff --git a/geek-tips/misc/index.html b/geek-tips/misc/index.html index c150fe21..bc852312 100644 --- a/geek-tips/misc/index.html +++ b/geek-tips/misc/index.html @@ -227,7 +227,7 @@
  • 💾 Data diff --git a/geek-tips/misc/jekyll.html b/geek-tips/misc/jekyll.html index cb08f01f..15e0ea99 100644 --- a/geek-tips/misc/jekyll.html +++ b/geek-tips/misc/jekyll.html @@ -227,7 +227,7 @@
  • 💾 Data diff --git a/geek-tips/misc/microsoft-word.html b/geek-tips/misc/microsoft-word.html index f94b4221..964d9fb3 100644 --- a/geek-tips/misc/microsoft-word.html +++ b/geek-tips/misc/microsoft-word.html @@ -227,7 +227,7 @@
  • 💾 Data diff --git a/geek-tips/misc/openneuro.html b/geek-tips/misc/openneuro.html index 7fce3c8f..866e6726 100644 --- a/geek-tips/misc/openneuro.html +++ b/geek-tips/misc/openneuro.html @@ -227,7 +227,7 @@
  • 💾 Data diff --git a/geek-tips/misc/sketchup.html b/geek-tips/misc/sketchup.html index fc6f8434..cb09d16e 100644 --- a/geek-tips/misc/sketchup.html +++ b/geek-tips/misc/sketchup.html @@ -227,7 +227,7 @@
  • 💾 Data diff --git a/geek-tips/misc/virtual-machines/README.html b/geek-tips/misc/virtual-machines/README.html index e9c2b194..0fd65435 100644 --- a/geek-tips/misc/virtual-machines/README.html +++ b/geek-tips/misc/virtual-machines/README.html @@ -227,7 +227,7 @@
  • 💾 Data diff --git a/geek-tips/misc/virtual-machines/index.html b/geek-tips/misc/virtual-machines/index.html index e9c2b194..0fd65435 100644 --- a/geek-tips/misc/virtual-machines/index.html +++ b/geek-tips/misc/virtual-machines/index.html @@ -227,7 +227,7 @@
  • 💾 Data diff --git a/geek-tips/misc/virtual-machines/vagrant.html b/geek-tips/misc/virtual-machines/vagrant.html index d92a0a26..b2bb94ba 100644 --- a/geek-tips/misc/virtual-machines/vagrant.html +++ b/geek-tips/misc/virtual-machines/vagrant.html @@ -227,7 +227,7 @@
  • 💾 Data diff --git a/geek-tips/misc/virtual-machines/virtualbox.html b/geek-tips/misc/virtual-machines/virtualbox.html index 4343589e..a6c7d99e 100644 --- a/geek-tips/misc/virtual-machines/virtualbox.html +++ b/geek-tips/misc/virtual-machines/virtualbox.html @@ -227,7 +227,7 @@
  • 💾 Data diff --git a/geek-tips/misc/xquartz.html b/geek-tips/misc/xquartz.html index cd859d43..39c48ac2 100644 --- a/geek-tips/misc/xquartz.html +++ b/geek-tips/misc/xquartz.html @@ -227,7 +227,7 @@
  • 💾 Data diff --git a/geek-tips/os-guides/README.html b/geek-tips/os-guides/README.html index f1d98cd2..37b5af04 100644 --- a/geek-tips/os-guides/README.html +++ b/geek-tips/os-guides/README.html @@ -227,7 +227,7 @@
  • 💾 Data diff --git a/geek-tips/os-guides/index.html b/geek-tips/os-guides/index.html index f1d98cd2..37b5af04 100644 --- a/geek-tips/os-guides/index.html +++ b/geek-tips/os-guides/index.html @@ -227,7 +227,7 @@
  • 💾 Data diff --git a/geek-tips/os-guides/linux.html b/geek-tips/os-guides/linux.html index 9d90748b..a6373c3a 100644 --- a/geek-tips/os-guides/linux.html +++ b/geek-tips/os-guides/linux.html @@ -227,7 +227,7 @@
  • 💾 Data diff --git a/geek-tips/os-guides/macosx.html b/geek-tips/os-guides/macosx.html index 2e838d51..409c3863 100644 --- a/geek-tips/os-guides/macosx.html +++ b/geek-tips/os-guides/macosx.html @@ -227,7 +227,7 @@
  • 💾 Data diff --git a/geek-tips/programming-languages/README.html b/geek-tips/programming-languages/README.html index 45516e04..e8020b94 100644 --- a/geek-tips/programming-languages/README.html +++ b/geek-tips/programming-languages/README.html @@ -227,7 +227,7 @@
  • 💾 Data diff --git a/geek-tips/programming-languages/c++/README.html b/geek-tips/programming-languages/c++/README.html index 39b7a480..abda6dd3 100644 --- a/geek-tips/programming-languages/c++/README.html +++ b/geek-tips/programming-languages/c++/README.html @@ -227,7 +227,7 @@
  • 💾 Data diff --git a/geek-tips/programming-languages/c++/index.html b/geek-tips/programming-languages/c++/index.html index 39b7a480..abda6dd3 100644 --- a/geek-tips/programming-languages/c++/index.html +++ b/geek-tips/programming-languages/c++/index.html @@ -227,7 +227,7 @@
  • 💾 Data diff --git a/geek-tips/programming-languages/c++/installation-of-vtk-and-itk-on-mac-os-x.html b/geek-tips/programming-languages/c++/installation-of-vtk-and-itk-on-mac-os-x.html index b89ebbd6..4ec8d2ad 100644 --- a/geek-tips/programming-languages/c++/installation-of-vtk-and-itk-on-mac-os-x.html +++ b/geek-tips/programming-languages/c++/installation-of-vtk-and-itk-on-mac-os-x.html @@ -227,7 +227,7 @@
  • 💾 Data diff --git a/geek-tips/programming-languages/c++/using-xcode.html b/geek-tips/programming-languages/c++/using-xcode.html index fb299666..d7000549 100644 --- a/geek-tips/programming-languages/c++/using-xcode.html +++ b/geek-tips/programming-languages/c++/using-xcode.html @@ -227,7 +227,7 @@
  • 💾 Data diff --git a/geek-tips/programming-languages/index.html b/geek-tips/programming-languages/index.html index 45516e04..e8020b94 100644 --- a/geek-tips/programming-languages/index.html +++ b/geek-tips/programming-languages/index.html @@ -227,7 +227,7 @@
  • 💾 Data diff --git a/geek-tips/programming-languages/matlab.html b/geek-tips/programming-languages/matlab.html index 84e53f6f..0d78122e 100644 --- a/geek-tips/programming-languages/matlab.html +++ b/geek-tips/programming-languages/matlab.html @@ -227,7 +227,7 @@
  • 💾 Data diff --git a/geek-tips/programming-languages/python.html b/geek-tips/programming-languages/python.html index a0aeeae9..3d3a1090 100644 --- a/geek-tips/programming-languages/python.html +++ b/geek-tips/programming-languages/python.html @@ -227,7 +227,7 @@
  • 💾 Data diff --git a/geek-tips/useful-links.html b/geek-tips/useful-links.html index 01f263bf..6af71834 100644 --- a/geek-tips/useful-links.html +++ b/geek-tips/useful-links.html @@ -227,7 +227,7 @@
  • 💾 Data diff --git a/genindex.html b/genindex.html index 3e4c98d3..3b6ccca8 100644 --- a/genindex.html +++ b/genindex.html @@ -226,7 +226,7 @@
  • 💾 Data diff --git a/ideas-for-cool-projects.html b/ideas-for-cool-projects.html index 611c275b..12eb6ef0 100644 --- a/ideas-for-cool-projects.html +++ b/ideas-for-cool-projects.html @@ -227,7 +227,7 @@
  • 💾 Data diff --git a/index.html b/index.html index 8485fa21..2645ab8b 100644 --- a/index.html +++ b/index.html @@ -228,7 +228,7 @@
  • 💾 Data diff --git a/mri-scanning/README.html b/mri-scanning/README.html index 92668330..00f4ae6c 100644 --- a/mri-scanning/README.html +++ b/mri-scanning/README.html @@ -227,7 +227,7 @@
  • 💾 Data diff --git a/mri-scanning/concordia-ge.html b/mri-scanning/concordia-ge.html index b236901e..212ac22c 100644 --- a/mri-scanning/concordia-ge.html +++ b/mri-scanning/concordia-ge.html @@ -227,7 +227,7 @@
  • 💾 Data diff --git a/mri-scanning/index.html b/mri-scanning/index.html index 92668330..00f4ae6c 100644 --- a/mri-scanning/index.html +++ b/mri-scanning/index.html @@ -227,7 +227,7 @@
  • 💾 Data diff --git a/mri-scanning/mhi-7t-agilent.html b/mri-scanning/mhi-7t-agilent.html index 69acfb5c..79bb67f8 100644 --- a/mri-scanning/mhi-7t-agilent.html +++ b/mri-scanning/mhi-7t-agilent.html @@ -227,7 +227,7 @@
  • 💾 Data diff --git a/mri-scanning/mni-mcgill-7t-terra.html b/mri-scanning/mni-mcgill-7t-terra.html index 016663a3..c9d554b2 100644 --- a/mri-scanning/mni-mcgill-7t-terra.html +++ b/mri-scanning/mni-mcgill-7t-terra.html @@ -227,7 +227,7 @@
  • 💾 Data diff --git a/mri-scanning/unf-3t-prisma.html b/mri-scanning/unf-3t-prisma.html index 7061384f..c8fef13f 100644 --- a/mri-scanning/unf-3t-prisma.html +++ b/mri-scanning/unf-3t-prisma.html @@ -227,7 +227,7 @@
  • 💾 Data diff --git a/objects.inv b/objects.inv index 42b7016c..343669eb 100644 Binary files a/objects.inv and b/objects.inv differ diff --git a/onboarding/README.html b/onboarding/README.html index dd7e9f00..7d6081da 100644 --- a/onboarding/README.html +++ b/onboarding/README.html @@ -227,7 +227,7 @@
  • 💾 Data diff --git a/onboarding/campus-access.html b/onboarding/campus-access.html index 3b0ab57a..18d9b3a7 100644 --- a/onboarding/campus-access.html +++ b/onboarding/campus-access.html @@ -227,7 +227,7 @@
  • 💾 Data diff --git a/onboarding/computer-setup/README.html b/onboarding/computer-setup/README.html index 4a712226..3dfa3749 100644 --- a/onboarding/computer-setup/README.html +++ b/onboarding/computer-setup/README.html @@ -227,7 +227,7 @@
  • 💾 Data diff --git a/onboarding/computer-setup/configuration-tips.html b/onboarding/computer-setup/configuration-tips.html index 9dfbe9be..b41d2c19 100644 --- a/onboarding/computer-setup/configuration-tips.html +++ b/onboarding/computer-setup/configuration-tips.html @@ -227,7 +227,7 @@
  • 💾 Data diff --git a/onboarding/computer-setup/eduroam.html b/onboarding/computer-setup/eduroam.html index 46ebe9b2..d5427e28 100644 --- a/onboarding/computer-setup/eduroam.html +++ b/onboarding/computer-setup/eduroam.html @@ -227,7 +227,7 @@
  • 💾 Data diff --git a/onboarding/computer-setup/index.html b/onboarding/computer-setup/index.html index 4a712226..3dfa3749 100644 --- a/onboarding/computer-setup/index.html +++ b/onboarding/computer-setup/index.html @@ -227,7 +227,7 @@
  • 💾 Data diff --git a/onboarding/computer-setup/mail.html b/onboarding/computer-setup/mail.html index 0f3181b0..fd0ecb24 100644 --- a/onboarding/computer-setup/mail.html +++ b/onboarding/computer-setup/mail.html @@ -227,7 +227,7 @@
  • 💾 Data diff --git a/onboarding/computer-setup/shell-profile.html b/onboarding/computer-setup/shell-profile.html index c46446b6..9af4c249 100644 --- a/onboarding/computer-setup/shell-profile.html +++ b/onboarding/computer-setup/shell-profile.html @@ -227,7 +227,7 @@
  • 💾 Data diff --git a/onboarding/computer-setup/slack.html b/onboarding/computer-setup/slack.html index deb9f5c4..4454b19a 100644 --- a/onboarding/computer-setup/slack.html +++ b/onboarding/computer-setup/slack.html @@ -227,7 +227,7 @@
  • 💾 Data diff --git a/onboarding/consultants-ra.html b/onboarding/consultants-ra.html index ed731067..8097a84a 100644 --- a/onboarding/consultants-ra.html +++ b/onboarding/consultants-ra.html @@ -227,7 +227,7 @@
  • 💾 Data diff --git a/onboarding/dropbox-google-drive.html b/onboarding/dropbox-google-drive.html index 3caf915e..79da93a4 100644 --- a/onboarding/dropbox-google-drive.html +++ b/onboarding/dropbox-google-drive.html @@ -227,7 +227,7 @@
  • 💾 Data diff --git a/onboarding/getting-started.html b/onboarding/getting-started.html index f7f4012a..a9ef5ae3 100644 --- a/onboarding/getting-started.html +++ b/onboarding/getting-started.html @@ -227,7 +227,7 @@
  • 💾 Data diff --git a/onboarding/index.html b/onboarding/index.html index dd7e9f00..7d6081da 100644 --- a/onboarding/index.html +++ b/onboarding/index.html @@ -227,7 +227,7 @@
  • 💾 Data diff --git a/onboarding/infrastructure.html b/onboarding/infrastructure.html index 4857a664..b729abaf 100644 --- a/onboarding/infrastructure.html +++ b/onboarding/infrastructure.html @@ -227,7 +227,7 @@
  • 💾 Data diff --git a/onboarding/postdoc.html b/onboarding/postdoc.html index 29fd8ffd..518dc0fe 100644 --- a/onboarding/postdoc.html +++ b/onboarding/postdoc.html @@ -227,7 +227,7 @@
  • 💾 Data diff --git a/onboarding/software-development.html b/onboarding/software-development.html index d853e570..c1ab74ff 100644 --- a/onboarding/software-development.html +++ b/onboarding/software-development.html @@ -227,7 +227,7 @@
  • 💾 Data diff --git a/onboarding/students-interns.html b/onboarding/students-interns.html index 96657e6e..8fd4df53 100644 --- a/onboarding/students-interns.html +++ b/onboarding/students-interns.html @@ -227,7 +227,7 @@
  • 💾 Data diff --git a/practical-information/README.html b/practical-information/README.html index e856b2a6..e93dca63 100644 --- a/practical-information/README.html +++ b/practical-information/README.html @@ -227,7 +227,7 @@
  • 💾 Data diff --git a/practical-information/index.html b/practical-information/index.html index e856b2a6..e93dca63 100644 --- a/practical-information/index.html +++ b/practical-information/index.html @@ -227,7 +227,7 @@
  • 💾 Data diff --git a/practical-information/living-in-montreal.html b/practical-information/living-in-montreal.html index 5e7f495f..3629069d 100644 --- a/practical-information/living-in-montreal.html +++ b/practical-information/living-in-montreal.html @@ -227,7 +227,7 @@
  • 💾 Data diff --git a/practical-information/medical.html b/practical-information/medical.html index 529790c5..a4eba882 100644 --- a/practical-information/medical.html +++ b/practical-information/medical.html @@ -227,7 +227,7 @@
  • 💾 Data diff --git a/practical-information/purchasing-hardware-and-lab-supplies.html b/practical-information/purchasing-hardware-and-lab-supplies.html index 62e1679f..769a3022 100644 --- a/practical-information/purchasing-hardware-and-lab-supplies.html +++ b/practical-information/purchasing-hardware-and-lab-supplies.html @@ -227,7 +227,7 @@
  • 💾 Data diff --git a/practical-information/visa.html b/practical-information/visa.html index 2d350a3d..75294275 100644 --- a/practical-information/visa.html +++ b/practical-information/visa.html @@ -227,7 +227,7 @@
  • 💾 Data diff --git a/rf-lab/3d-printing/README.html b/rf-lab/3d-printing/README.html index e6056ca3..cb0af503 100644 --- a/rf-lab/3d-printing/README.html +++ b/rf-lab/3d-printing/README.html @@ -227,7 +227,7 @@
  • 💾 Data diff --git a/rf-lab/3d-printing/index.html b/rf-lab/3d-printing/index.html index e6056ca3..cb0af503 100644 --- a/rf-lab/3d-printing/index.html +++ b/rf-lab/3d-printing/index.html @@ -227,7 +227,7 @@
  • 💾 Data diff --git a/rf-lab/3d-printing/octoprint.html b/rf-lab/3d-printing/octoprint.html index adcd21f2..36742230 100644 --- a/rf-lab/3d-printing/octoprint.html +++ b/rf-lab/3d-printing/octoprint.html @@ -227,7 +227,7 @@
  • 💾 Data diff --git a/rf-lab/README.html b/rf-lab/README.html index 9a843909..ad8fcf4a 100644 --- a/rf-lab/README.html +++ b/rf-lab/README.html @@ -227,7 +227,7 @@
  • 💾 Data diff --git a/rf-lab/cnc-machine.html b/rf-lab/cnc-machine.html index a7af1eb4..bb2a1c88 100644 --- a/rf-lab/cnc-machine.html +++ b/rf-lab/cnc-machine.html @@ -227,7 +227,7 @@
  • 💾 Data diff --git a/rf-lab/index.html b/rf-lab/index.html index 9a843909..ad8fcf4a 100644 --- a/rf-lab/index.html +++ b/rf-lab/index.html @@ -227,7 +227,7 @@
  • 💾 Data diff --git a/rf-lab/misc.html b/rf-lab/misc.html index 1ba5d827..ed47acc9 100644 --- a/rf-lab/misc.html +++ b/rf-lab/misc.html @@ -227,7 +227,7 @@
  • 💾 Data diff --git a/rf-lab/mri-coils-at-neuropoly.html b/rf-lab/mri-coils-at-neuropoly.html index ec2c9b0f..52283ac8 100644 --- a/rf-lab/mri-coils-at-neuropoly.html +++ b/rf-lab/mri-coils-at-neuropoly.html @@ -227,7 +227,7 @@
  • 💾 Data diff --git a/rf-lab/mri-phantoms.html b/rf-lab/mri-phantoms.html index f6386bf0..492a5933 100644 --- a/rf-lab/mri-phantoms.html +++ b/rf-lab/mri-phantoms.html @@ -227,7 +227,7 @@
  • 💾 Data diff --git a/rf-lab/pcb-manufacturing.html b/rf-lab/pcb-manufacturing.html index c2f73d22..b1b675ca 100644 --- a/rf-lab/pcb-manufacturing.html +++ b/rf-lab/pcb-manufacturing.html @@ -227,7 +227,7 @@
  • 💾 Data diff --git a/scholarships.html b/scholarships.html index 0c596dad..71943e96 100644 --- a/scholarships.html +++ b/scholarships.html @@ -227,7 +227,7 @@
  • 💾 Data diff --git a/search.html b/search.html index b049cd87..a4868d0b 100644 --- a/search.html +++ b/search.html @@ -228,7 +228,7 @@
  • 💾 Data diff --git a/searchindex.js b/searchindex.js index 73b4d366..c7517537 100644 --- a/searchindex.js +++ b/searchindex.js @@ -1 +1 @@ -Search.setIndex({"alltitles": {".bash_profile": [[30, "bash-profile"]], "1. Create a New Project": [[70, "create-a-new-project"]], "1H 140/184mm, 300MHz Quad Birdcage Coil ": [[77, "h-140-184mm-300mhz-quad-birdcage-coil"]], "1H 38/108mm, 300MHz Quad Birdcage Coil ": [[77, "h-38-108mm-300mhz-quad-birdcage-coil"]], "2. Edit Settings": [[70, "edit-settings"]], "205/120 HD Gradient Coil ": [[77, "id1"]], "3. Add Files": [[70, "add-files"]], "305/210 HD Gradient Coil ": [[77, "hd-gradient-coil"]], "3D Printer - Big Builder - Dual feed (RF lab)": [[100, "d-printer-big-builder-dual-feed-rf-lab"]], "3D Printing": [[100, "d-printing"]], "4. Set DYLD_LIBRARY_PATH": [[70, "set-dyld-library-path"]], "": [[24, "source-filename"]], "\u2601\ufe0f Microsoft 365": [[14, "microsoft-365"]], "\u2697\ufe0f Lab Manual": [[0, "lab-manual"]], "\u2708\ufe0f Conferences": [[20, "conferences"]], "\u270d\ufe0f Academic Writing": [[109, "academic-writing"]], "\ud83c\udde8\ud83c\udde6 Living in Montreal": [[96, "living-in-montreal"]], "\ud83c\udf0e VISAs and Work Permits": [[99, "visas-and-work-permits"]], "\ud83c\udf93 University Courses": [[22, "university-courses"]], "\ud83c\udfe5 Medical": [[97, "medical"]], "\ud83d\udc4b Onboarding": [[80, "onboarding"]], "\ud83d\udca1 Ideas for Cool Projects": [[74, "ideas-for-cool-projects"]], "\ud83d\udca1 Other configuration tips": [[83, "other-configuration-tips"]], "\ud83d\udcb0 Scholarships": [[108, "scholarships"]], "\ud83d\udcbb Shell Profile": [[86, "shell-profile"]], "\ud83d\udcbe Data": [[23, "data"]], "\ud83d\udcc5 Calendar & Meetings": [[1, "calendar-meetings"]], "\ud83d\udcce Practical Information": [[95, "practical-information"]], "\ud83d\udcd6 Comprehensive Exam": [[10, "comprehensive-exam"]], "\ud83d\udcda Bibliography": [[2, "bibliography"]], "\ud83d\udcde Contact": [[21, "contact"]], "\ud83d\udce7 Email": [[85, "email"]], "\ud83d\udcf6 Eduroam": [[84, "eduroam"]], "\ud83d\udd27 RF Lab": [[102, "rf-lab"]], "\ud83d\udda5 Compute Canada": [[13, "compute-canada"]], "\ud83d\udda5 Computers @CRIUGM": [[12, "computers-criugm"]], "\ud83d\udda5 Computers @NeuroPoly": [[15, "computers-neuropoly"]], "\ud83d\udda5 Computing Resources": [[11, "computing-resources"]], "\ud83d\udda8 Printer": [[18, "printer"]], "\ud83d\udde3 Slack": [[87, "slack"]], "\ud83d\udee0 Purchasing Supplies": [[98, "purchasing-supplies"]], "\ud83e\udd13 Geek tips": [[29, "geek-tips"]], "\ud83e\udde9 EDI": [[28, "edi"]], "\ud83e\uddf2 MRI Scanning": [[75, "mri-scanning"]], "AI and deep learning": [[94, "ai-and-deep-learning"]], "ANSI Escape Codes for Colours": [[31, "ansi-escape-codes-for-colours"]], "AWS": [[58, "aws"]], "Abstracts": [[20, "abstracts"]], "Access from stations": [[26, "access-from-stations"]], "Access to UNF": [[79, "access-to-unf"]], "Accessing Datasets (external volumes)": [[54, "accessing-datasets-external-volumes"]], "Account Creation": [[14, "account-creation"]], "Acknowledgements": [[109, "acknowledgements"]], "Acquisition": [[74, "acquisition"]], "Add LINUX machine to GRAMES ": [[83, "add-linux-machine-to-grames"]], "Add PolyMTL email to the macOS Mail app": [[85, "add-polymtl-email-to-the-macos-mail-app"]], "Add SSH key": [[38, "add-ssh-key"]], "Add extra devices": [[27, "add-extra-devices"]], "Add tag": [[38, "add-tag"]], "Add users": [[27, "add-users"]], "Addressing Reviewer Comments": [[109, "addressing-reviewer-comments"]], "Admin": [[15, "admin"]], "Admin Guide": [[27, "admin-guide"]], "Admission at Polytechnique": [[22, "admission-at-polytechnique"]], "Advanced Normalization Tools (ANTs)": [[41, "advanced-normalization-tools-ants"]], "Affiliation with Mila": [[81, "affiliation-with-mila"]], "Affiliations": [[109, "affiliations"]], "Affine-only point-match transformation": [[41, "affine-only-point-match-transformation"]], "Amending Commits": [[38, "amending-commits"]], "Anatomical Priors:": [[3, "anatomical-priors"]], "Anima": [[42, "anima"]], "Ants & c3d": [[65, "ants-c3d"]], "Archive Utility: Permanent loading": [[66, "archive-utility-permanent-loading"]], "Arrays": [[31, "arrays"]], "Arterial Spin Labeling (ASL)": [[6, "arterial-spin-labeling-asl"]], "Automatic Mount on Startup": [[65, "automatic-mount-on-startup"]], "Automator": [[66, "automator"]], "Awesome links": [[30, "awesome-links"]], "B0 Shimming": [[6, "b0-shimming"]], "B1 Shimming": [[6, "b1-shimming"]], "Backups": [[27, "backups"]], "Bash/Shell": [[30, "bash-shell"]], "Be prepared to use libraries": [[69, "be-prepared-to-use-libraries"]], "Biomedical": [[22, "biomedical"]], "BitBucket": [[52, "bitbucket"]], "Book a room": [[1, "book-a-room"]], "Book scanner": [[76, "book-scanner"]], "Book the scanner": [[78, "book-the-scanner"]], "Book the scanner and log in the google calendar": [[75, "book-the-scanner-and-log-in-the-google-calendar"]], "Booking the scanner": [[79, "booking-the-scanner"]], "Bookings": [[17, "bookings"]], "Booting Options": [[66, "booting-options"]], "Branch Conflicts": [[93, "branch-conflicts"]], "Branches": [[38, "branches"]], "Brother HL-3170CDW - Error: \u201clow toner\u201d ": [[18, "brother-hl-3170cdw-error-low-toner"]], "Build Docker container from Dockerfile ": [[53, "build-docker-container-from-dockerfile"]], "Build Phases": [[70, "build-phases"]], "Build Settings": [[70, "build-settings"]], "Building the derivatives datasets": [[24, "building-the-derivatives-datasets"]], "Building the raw dataset": [[24, "building-the-raw-dataset"]], "C++": [[68, "c"]], "CNC machine": [[103, "cnc-machine"]], "CNNs": [[3, "cnns"]], "COVID-19 Protocol": [[81, "covid-19-protocol"]], "CPU Clusters": [[12, "cpu-clusters"], [16, "cpu-clusters"]], "CPU/GPU Clusters": [[15, "cpu-gpu-clusters"]], "CSV Files": [[31, "csv-files"]], "CUDA": [[34, "cuda"]], "CUDA 7.5": [[34, "cuda-7-5"]], "Cables": [[98, "cables"]], "Calendar": [[1, "calendar"]], "Campus Access": [[81, "campus-access"]], "Campus Map": [[81, "campus-map"]], "Cannot repair permission": [[66, "cannot-repair-permission"]], "Cedar (CC)": [[13, "cedar-cc"]], "CentOS/Fedora/Red Hat": [[65, "centos-fedora-red-hat"]], "Change Folder Icon ": [[66, "change-folder-icon"]], "Change owner of a file": [[30, "change-owner-of-a-file"]], "Change permissions": [[30, "change-permissions"]], "Changelog policy": [[24, "changelog-policy"]], "Characteristics ": [[77, "characteristics"]], "Check Processes": [[30, "check-processes"]], "Check grammar": [[109, "check-grammar"]], "Check jobs": [[13, "check-jobs"]], "Check which branch you are currently working on": [[38, "check-which-branch-you-are-currently-working-on"]], "Checkout branch from fork": [[38, "checkout-branch-from-fork"]], "Checkout existing branch": [[38, "checkout-existing-branch"]], "Checkout specific tag or commit": [[38, "checkout-specific-tag-or-commit"]], "Checksum ": [[30, "checksum"]], "Chrome": [[66, "chrome"]], "Clinical": [[109, "clinical"]], "Clone specific branch": [[38, "clone-specific-branch"]], "Cloud Account": [[13, "cloud-account"]], "Code Style": [[93, "code-style"]], "Coils": [[76, "coils"]], "Coils ": [[77, "coils"]], "Colors": [[31, "colors"]], "Come back to previous commit (ignore the latest ones)": [[38, "come-back-to-previous-commit-ignore-the-latest-ones"]], "Command Line Input": [[31, "command-line-input"]], "Commit Rights": [[27, "commit-rights"]], "Commit Sequences": [[93, "commit-sequences"]], "Commit Titles": [[93, "commit-titles"]], "Commit message convention": [[38, "commit-message-convention"]], "Commit: change message": [[38, "commit-change-message"]], "Commits": [[38, "commits"]], "Committing": [[27, "committing"], [93, "committing"]], "Compare commits/branches/tags": [[38, "compare-commits-branches-tags"]], "Compression/Extraction": [[30, "compression-extraction"]], "Computer Setup": [[82, "computer-setup"]], "Computer Vision": [[22, "computer-vision"]], "Computers": [[91, "computers"], [98, "computers"]], "Concordia (3T GE)": [[76, "concordia-3t-ge"]], "Conditional Random Fields (CRF)": [[33, "conditional-random-fields-crf"]], "Configure git": [[38, "configure-git"]], "Configure virtualenvwrapper under LINUX ": [[83, "configure-virtualenvwrapper-under-linux"]], "Connect to NeuroPoly Computers": [[15, "connect-to-neuropoly-computers"]], "Connect to Windows Servers": [[15, "connect-to-windows-servers"]], "Connect to the Polytechnique public disk": [[15, "connect-to-the-polytechnique-public-disk"]], "Connecting": [[17, "connecting"]], "Connecting to data.neuro.polymtl.ca": [[27, "connecting-to-data-neuro-polymtl-ca"]], "Connection closed by remote host": [[38, "connection-closed-by-remote-host"]], "Connectors": [[98, "connectors"]], "Consultant": [[88, "consultant"]], "Consultants and RA": [[88, "consultants-and-ra"]], "Continual Learning": [[3, "continual-learning"]], "Continuous Integration": [[93, "continuous-integration"]], "Contribute to a project": [[38, "contribute-to-a-project"]], "Converting data to BIDS": [[24, "converting-data-to-bids"]], "Copy (and synchronize) with rsync": [[30, "copy-and-synchronize-with-rsync"]], "Copy file between computers": [[30, "copy-file-between-computers"]], "Copy file into container ": [[53, "copy-file-into-container"]], "Copy from a remote station": [[30, "copy-from-a-remote-station"]], "Copy from remote station via scp": [[30, "copy-from-remote-station-via-scp"]], "Copy/Make a disk image from CD/DVD (ISO format) ": [[66, "copy-make-a-disk-image-from-cd-dvd-iso-format"]], "Copying": [[30, "copying"], [30, "id2"]], "Courses and Tutorials": [[72, "courses-and-tutorials"]], "Courses:": [[38, "courses"]], "Cover letter": [[109, "cover-letter"]], "Create Account": [[13, "create-account"]], "Create Draft": [[20, "create-draft"]], "Create Job Script": [[12, "create-job-script"]], "Create a Virtual Machine (VM) with Debian ": [[62, "create-a-virtual-machine-vm-with-debian"]], "Create a branch": [[38, "create-a-branch"]], "Create a mesh out of a binary file ": [[47, "create-a-mesh-out-of-a-binary-file"]], "Create job script": [[13, "create-job-script"]], "Create recovery partition ": [[66, "create-recovery-partition"]], "Create repository inside repository": [[38, "create-repository-inside-repository"]], "Creating Containers": [[54, "creating-containers"]], "Creating a Script": [[31, "creating-a-script"]], "Creation of an XCode project linked with ITK and VTK": [[70, "creation-of-an-xcode-project-linked-with-itk-and-vtk"]], "Daily life": [[96, "daily-life"]], "Data": [[17, "data"], [91, "data"]], "Data Collection": [[77, "data-collection"]], "DataLad": [[58, "datalad"]], "Dataset curation": [[24, "dataset-curation"]], "Dates": [[31, "dates"]], "Deep Learning": [[3, "deep-learning"], [32, "deep-learning"], [74, "deep-learning"], [109, "deep-learning"]], "Deep Learning Applied to MRI": [[3, "deep-learning-applied-to-mri"]], "Deep Learning Applied to Medical Analysis": [[3, "deep-learning-applied-to-medical-analysis"]], "Deep Learning Resources": [[3, "deep-learning-resources"]], "Delete a bunch of files": [[30, "delete-a-bunch-of-files"]], "Delete non-empty folder": [[30, "delete-non-empty-folder"]], "Deleting": [[30, "deleting"]], "Deleting a branch": [[27, "deleting-a-branch"]], "Deletion": [[27, "deletion"], [27, "id3"]], "Derivative entities": [[24, "derivative-entities"]], "Derivative suffixes": [[24, "derivative-suffixes"]], "Derivatives extensions": [[24, "derivatives-extensions"]], "Derivatives structure": [[24, "derivatives-structure"]], "Desk/computer access": [[81, "desk-computer-access"]], "Developing Code": [[93, "developing-code"]], "Dialog box: select option with Tab ": [[66, "dialog-box-select-option-with-tab"]], "Diffusion MRI": [[6, "diffusion-mri"]], "Diffusion Simulator": [[43, "diffusion-simulator"]], "Disable Notification Center ": [[66, "disable-notification-center"]], "Discard local changes (if pull doesn\u2019t work)": [[38, "discard-local-changes-if-pull-doesn-t-work"]], "Displays": [[66, "displays"]], "Distilled Water": [[104, "distilled-water"]], "Distribution": [[70, "distribution"]], "Dock in 2d ": [[66, "dock-in-2d"]], "Docker": [[53, "docker"]], "Docker Environment ": [[54, "docker-environment"]], "Docker Terminology": [[53, "docker-terminology"]], "Docker for Deep Learning": [[54, "docker-for-deep-learning"]], "Doctorate (PhD)": [[108, "doctorate-phd"]], "Documentation ": [[36, "documentation"], [77, "documentation"]], "Documentation and Docstrings": [[93, "documentation-and-docstrings"]], "Documents to submit": [[10, "documents-to-submit"]], "Domain Adaptation for Medical Imaging:": [[3, "domain-adaptation-for-medical-imaging"]], "Domain Adaptation:": [[3, "domain-adaptation"]], "Download": [[27, "download"], [38, "download"]], "Download OpenNeuro Dataset": [[58, "download-openneuro-dataset"]], "Download file from internet": [[30, "download-file-from-internet"]], "Download the data": [[78, "download-the-data"], [79, "download-the-data"]], "Dropbox": [[55, "dropbox"], [66, "dropbox"]], "ECTRIMS": [[20, "ectrims"]], "Emails": [[30, "emails"]], "Emergency": [[97, "emergency"]], "Environment Variables": [[13, "environment-variables"]], "Error: \u201cdisk quota exceeded\u201d": [[66, "error-disk-quota-exceeded"]], "Ethics": [[22, "ethics"]], "Example": [[41, "example"]], "Example:": [[40, "example"]], "Example: Building ITK 4.6.1 on Mac OSX 10.9.5": [[69, "example-building-itk-4-6-1-on-mac-osx-10-9-5"]], "Examples and use cases": [[24, "examples-and-use-cases"]], "Exposing Container Ports": [[54, "exposing-container-ports"]], "FOR Loop": [[31, "for-loop"]], "FSL": [[45, "fsl"], [65, "fsl"]], "FSL and FSLeyes": [[66, "fsl-and-fsleyes"]], "FSLeyes": [[46, "fsleyes"]], "Feature-wise Linear Modulation (FiLM)": [[3, "feature-wise-linear-modulation-film"]], "Few-shot Learning and Meta-Learning": [[3, "few-shot-learning-and-meta-learning"]], "Figures": [[71, "figures"]], "Figures (in vectorial format)": [[109, "figures-in-vectorial-format"]], "File/Folders": [[30, "file-folders"]], "Files and Folders": [[66, "files-and-folders"]], "Fill out the screening and consent forms": [[78, "fill-out-the-screening-and-consent-forms"]], "Filling MRI eligibility form": [[79, "filling-mri-eligibility-form"]], "Find a Family Doctor": [[97, "find-a-family-doctor"]], "Finder": [[66, "finder"]], "Finding": [[30, "finding"]], "Finding participants": [[79, "finding-participants"]], "Fix CUDA driver version ": [[37, "fix-cuda-driver-version"]], "Fix conflicts during rebasing": [[38, "fix-conflicts-during-rebasing"]], "Fix module tensorflow import error ": [[37, "fix-module-tensorflow-import-error"]], "Fixed Capacitors": [[98, "fixed-capacitors"]], "Fixing Installation Issues": [[69, "fixing-installation-issues"]], "Folder Settings ": [[61, "folder-settings"]], "Fork the repository": [[38, "fork-the-repository"]], "Frameworks/Libraries ": [[32, "frameworks-libraries"]], "FreeSurfer": [[44, "freesurfer"]], "Fundamentals": [[6, "fundamentals"]], "Fundamentals of neuroimaging analysis": [[7, "fundamentals-of-neuroimaging-analysis"]], "GANs": [[3, "gans"]], "GANs for Synthetic Medical Data": [[3, "gans-for-synthetic-medical-data"]], "GE": [[15, "ge"]], "GPU Clusters": [[17, "gpu-clusters"]], "GPU-Agnostic code": [[17, "gpu-agnostic-code"]], "Gaussian Filter": [[40, "gaussian-filter"]], "General": [[6, "general"], [66, "general"], [109, "general"]], "General usage": [[38, "general-usage"]], "Generate log file ": [[31, "generate-log-file"]], "Genmitsu 3018-PROVer": [[103, "genmitsu-3018-prover"]], "Gerber viewer for OSX": [[104, "gerber-viewer-for-osx"]], "Get Data": [[77, "get-data"]], "Get help": [[90, "get-help"]], "Getting Started": [[13, "getting-started"], [90, "getting-started"]], "Getting Started & Basic Commands ": [[61, "getting-started-basic-commands"]], "Getting an account": [[27, "getting-an-account"]], "Git & Github": [[38, "git-github"]], "Git software": [[38, "git-software"]], "GitHub": [[38, "github"]], "Global default config ": [[66, "global-default-config"]], "Global git config": [[39, "global-git-config"]], "Good Internship Projects (Public)": [[74, "good-internship-projects-public"]], "Good Training Habits": [[17, "good-training-habits"]], "Google Docs": [[109, "google-docs"]], "Google Drive": [[89, "google-drive"]], "Groups": [[15, "groups"]], "HDD parameters": [[30, "hdd-parameters"]], "HOW TO": [[38, "how-to"]], "Hardware": [[17, "hardware"]], "Harvard Implicit Association Test": [[28, "harvard-implicit-association-test"]], "Histology": [[4, "histology"], [74, "histology"]], "How to always open a page with \u201cpage width\u201d view ": [[57, "how-to-always-open-a-page-with-page-width-view"]], "How to design PCB for PCBWAY ": [[107, "how-to-design-pcb-for-pcbway"]], "How to design PCB for Poly-Grames": [[107, "how-to-design-pcb-for-poly-grames"]], "How to merge specific files from another branch": [[38, "how-to-merge-specific-files-from-another-branch"]], "How to use XCode toolchain as a non-admin user?": [[70, "how-to-use-xcode-toolchain-as-a-non-admin-user"]], "I heard that the WiFi is changing? Could this affect my access?": [[84, "i-heard-that-the-wifi-is-changing-could-this-affect-my-access"]], "IDE": [[72, "ide"]], "IEEE EMBS ISC": [[20, "ieee-embs-isc"]], "IF - AND": [[31, "if-and"]], "IF - OR": [[31, "if-or"]], "IF Statements": [[31, "if-statements"]], "ISBI": [[20, "isbi"]], "ISMRM": [[20, "ismrm"]], "ITK Transform File": [[41, "itk-transform-file"]], "ITK-SNAP": [[47, "itk-snap"]], "Ignore file mode": [[38, "ignore-file-mode"]], "Image Capture": [[66, "image-capture"]], "Image Processing": [[7, "image-processing"]], "Image Processing Software": [[40, "image-processing-software"]], "Import a .ova file ": [[62, "import-a-ova-file"]], "Informatics": [[94, "informatics"]], "Infrastructure": [[91, "infrastructure"]], "Initial setup": [[27, "initial-setup"]], "Install & Run Linux distribution ": [[53, "install-run-linux-distribution"]], "Install ITK": [[69, "install-itk"]], "Install VTK": [[69, "install-vtk"]], "Install git": [[38, "install-git"]], "Install guest additions ": [[62, "install-guest-additions"]], "Install tensorflow ": [[37, "install-tensorflow"]], "Installation": [[34, "installation"], [39, "installation"], [41, "installation"], [42, "installation"], [44, "installation"], [45, "installation"], [49, "installation"], [58, "installation"], [58, "id1"], [72, "installation"]], "Installation ": [[46, "installation"]], "Installation of VTK and ITK on Mac OS X": [[69, "installation-of-vtk-and-itk-on-mac-os-x"]], "Installed on each station (local)": [[15, "installed-on-each-station-local"]], "Installing ": [[61, "installing"]], "Installing VTK/ITK on Mac OSX 10.9": [[69, "installing-vtk-itk-on-mac-osx-10-9"]], "Instrumentation / RF Coils": [[22, "instrumentation-rf-coils"]], "Intensity Correction": [[40, "intensity-correction"]], "Inter-rater": [[3, "inter-rater"]], "Internal projects (Private)": [[74, "internal-projects-private"]], "Internet / Network": [[30, "internet-network"]], "Internships": [[99, "internships"]], "Introduction": [[46, "introduction"], [93, "introduction"]], "Isolating GPUs (without Docker) ": [[35, "isolating-gpus-without-docker"]], "Issue Body": [[93, "issue-body"]], "Issue Labels": [[93, "issue-labels"]], "Issue Title": [[93, "issue-title"]], "Issues": [[71, "issues"]], "JSON sidecars": [[24, "json-sidecars"]], "Jekyll": [[56, "jekyll"]], "Journals": [[109, "journals"]], "Keep your branch up-to-date": [[38, "keep-your-branch-up-to-date"]], "Keyboard": [[66, "keyboard"]], "Keynote": [[66, "keynote"]], "Kill job": [[13, "kill-job"]], "Killing Processes": [[30, "killing-processes"]], "Lab rooms at Polytechnique": [[81, "lab-rooms-at-polytechnique"]], "Label names": [[24, "label-names"]], "Language": [[15, "language"]], "Language Courses": [[22, "language-courses"]], "Launch fslview via double click": [[66, "launch-fslview-via-double-click"]], "Let Terminal Talk": [[66, "let-terminal-talk"]], "Licensing": [[93, "licensing"]], "Linux": [[34, "linux"], [65, "linux"]], "Linux stations": [[15, "linux-stations"]], "List": [[27, "list"]], "List local Docker images ": [[53, "list-local-docker-images"]], "List of Computers at NeuroPoly": [[15, "list-of-computers-at-neuropoly"]], "List of Conferences": [[20, "list-of-conferences"]], "List of Online Conferences From Various Universities": [[20, "list-of-online-conferences-from-various-universities"]], "List of Servers": [[13, "list-of-servers"]], "List remote branches": [[38, "list-remote-branches"]], "List users": [[27, "list-users"]], "Locally": [[15, "locally"]], "Lock screen ": [[66, "lock-screen"]], "Lock screen upon sleep ": [[66, "lock-screen-upon-sleep"]], "Log Files": [[31, "log-files"]], "Logbook": [[75, "logbook"]], "Login": [[12, "login"]], "Long term, slow access (with backup)": [[17, "long-term-slow-access-with-backup"]], "Longitudinal MS Lesion Segmentation": [[3, "longitudinal-ms-lesion-segmentation"]], "Look for group owner & permission": [[30, "look-for-group-owner-permission"]], "MATLAB": [[66, "matlab"], [71, "matlab"]], "MHI (7T Agilent)": [[77, "mhi-7t-agilent"]], "MICCAI": [[20, "miccai"]], "MNI/McGill (7T Terra)": [[78, "mni-mcgill-7t-terra"]], "MR Spectroscopy": [[6, "mr-spectroscopy"]], "MRI": [[6, "mri"], [15, "mri"], [91, "mri"]], "MRI / Coils": [[109, "mri-coils"]], "MRI Analysis": [[7, "mri-analysis"]], "MRI Software": [[6, "mri-software"]], "MRI diagnosis": [[9, "mri-diagnosis"]], "MRI facilities": [[75, "mri-facilities"]], "MRI physics": [[94, "mri-physics"]], "MacOSX": [[66, "macosx"]], "Machine Learning / Statistics": [[22, "machine-learning-statistics"]], "Maintenance": [[66, "maintenance"]], "Make Hidden Applications Icons Transparent ": [[66, "make-hidden-applications-icons-transparent"]], "Mandatory Labels": [[93, "mandatory-labels"]], "Manual Segmentation of the Spinal Cord ": [[50, "manual-segmentation-of-the-spinal-cord"]], "Manual Segmentations": [[40, "manual-segmentations"]], "Manual method ": [[62, "manual-method"]], "Masters (MSc)": [[108, "masters-msc"]], "Matplotlib": [[72, "matplotlib"]], "McGill": [[22, "mcgill"], [22, "id8"], [22, "id11"], [22, "id13"]], "Mcgill": [[22, "id5"]], "Median Filter": [[40, "median-filter"]], "Medical imaging": [[22, "medical-imaging"], [94, "medical-imaging"]], "Meetings": [[1, "meetings"]], "Memory and CPU Settings ": [[61, "memory-and-cpu-settings"]], "Microsoft Word": [[57, "microsoft-word"], [66, "microsoft-word"]], "Mid-term, rapid access (no backup)": [[17, "mid-term-rapid-access-no-backup"]], "Miniconda": [[65, "miniconda"]], "Misc": [[15, "misc"], [31, "misc"], [35, "misc"], [66, "misc"], [104, "misc"]], "Miscellaneous": [[98, "miscellaneous"]], "MixUp": [[3, "mixup"]], "Modix Big-60 V2 - Dual feed (RF lab)": [[100, "modix-big-60-v2-dual-feed-rf-lab"]], "Modules": [[13, "modules"]], "Monitoring": [[17, "monitoring"]], "Monitoring GPUs": [[17, "monitoring-gpus"]], "Mount with GUI": [[26, "mount-with-gui"]], "Mount with Terminal": [[26, "mount-with-terminal"]], "Myelin Imaging": [[74, "myelin-imaging"]], "N3 - Non-parametric Non-uniform Intensity Normalization": [[40, "n3-non-parametric-non-uniform-intensity-normalization"]], "N4": [[40, "n4"]], "NIfTI": [[48, "nifti"]], "NVIDIA Docker": [[54, "nvidia-docker"]], "Network/DNS": [[30, "network-dns"]], "Neural ODEs:": [[3, "neural-odes"]], "NeuroImaging": [[72, "neuroimaging"]], "NeuroPoly Coils": [[105, "neuropoly-coils"]], "Neuroimaging": [[109, "neuroimaging"]], "New repo": [[39, "new-repo"]], "New repository": [[27, "new-repository"]], "Nice Packages": [[72, "nice-packages"]], "Nice Software": [[66, "nice-software"]], "Non-affine point-match transformation": [[41, "non-affine-point-match-transformation"]], "Non-magnetic connectors": [[104, "non-magnetic-connectors"]], "Notifications": [[66, "notifications"]], "Number of files ": [[30, "number-of-files"]], "OHBM": [[20, "ohbm"]], "OS Guides": [[64, "os-guides"]], "OctoPrint": [[101, "octoprint"]], "OctoPrint Plugins": [[101, "octoprint-plugins"]], "OneDrive": [[14, "onedrive"]], "Online Courses\u200b ": [[33, "online-courses"]], "OpenNeuro": [[58, "openneuro"]], "OpenNeuro CLI": [[49, "openneuro-cli"]], "Opening a Branch": [[93, "opening-a-branch"]], "Opening an Issue on GitHub": [[93, "opening-an-issue-on-github"]], "Optional (Recommended) Labels": [[93, "optional-recommended-labels"]], "Oral Exam/Presentation": [[10, "oral-exam-presentation"]], "Organizing Folders": [[109, "organizing-folders"]], "OsiriX": [[50, "osirix"]], "Other Links ": [[99, "other-links"]], "Other resources:": [[38, "other-resources"]], "Out of Distribution (OOD)": [[3, "out-of-distribution-ood"]], "Overleaf": [[109, "overleaf"]], "Overview": [[58, "overview"], [84, "overview"]], "PCB": [[98, "pcb"]], "PCB Manufacturing": [[107, "pcb-manufacturing"]], "PR Body": [[93, "pr-body"]], "PR Labels": [[93, "pr-labels"]], "PR Title": [[93, "pr-title"]], "Packaging Code": [[72, "packaging-code"]], "Paperpile": [[109, "paperpile"]], "Paperpile Folder": [[8, "paperpile-folder"]], "Papers": [[66, "papers"]], "Papers ": [[33, "papers"]], "Parameters for antsRegistration": [[41, "parameters-for-antsregistration"]], "Parse CSV File": [[31, "parse-csv-file"]], "Parts manufacturing": [[104, "parts-manufacturing"]], "Password": [[15, "password"]], "Password prompts: \u201cFinder wants to make changes\u201d": [[66, "password-prompts-finder-wants-to-make-changes"]], "Pathophysiology": [[9, "pathophysiology"]], "Pay a participant?": [[75, "pay-a-participant"]], "Permissions": [[27, "permissions"], [27, "id1"], [30, "permissions"]], "Phantoms": [[98, "phantoms"], [106, "phantoms"]], "Physics Informed Deep Learning:": [[3, "physics-informed-deep-learning"]], "Pipe Connectors": [[98, "pipe-connectors"]], "Planning Travel": [[20, "planning-travel"]], "Please advise one of the PIs before arriving for the first time on campus in order to organize the logistics together.": [[81, "please-advise-one-of-the-pis-before-arriving-for-the-first-time-on-campus-in-order-to-organize-the-logistics-together"]], "Plugins": [[46, "plugins"]], "Point-Set Expectation (PSE)": [[41, "point-set-expectation-pse"]], "Polytechnique Montr\u00e9al": [[22, "polytechnique-montreal"], [22, "id3"], [22, "id6"], [22, "id9"], [22, "id10"], [22, "id12"]], "Port Papers to another mac": [[66, "port-papers-to-another-mac"]], "Postdocs": [[99, "postdocs"]], "Postdoctoral Association": [[92, "postdoctoral-association"]], "Postdoctoral Office": [[92, "postdoctoral-office"]], "Postdoctoral fellows": [[92, "postdoctoral-fellows"]], "Postdoctorate": [[108, "postdoctorate"]], "Poster Tube": [[98, "poster-tube"]], "Posters": [[20, "posters"]], "Prerequisites": [[27, "prerequisites"]], "Preview": [[66, "preview"]], "Private walk-in (incl. week-end)": [[97, "private-walk-in-incl-week-end"]], "Processes": [[30, "processes"]], "Programming": [[15, "programming"]], "Programming & Software": [[22, "programming-software"]], "Programming Languages": [[67, "programming-languages"]], "Project-Specific Guidance": [[93, "project-specific-guidance"]], "Public Walk-in public (incl. week-end)": [[97, "public-walk-in-public-incl-week-end"]], "Pulse Sequence Programming": [[74, "pulse-sequence-programming"]], "Pulse Sequences": [[6, "pulse-sequences"]], "Push to remote": [[38, "push-to-remote"]], "Pycharm": [[38, "pycharm"]], "Python": [[13, "python"], [72, "python"]], "Quality Control (QC)": [[6, "quality-control-qc"]], "QuickLook": [[66, "quicklook"]], "README.md": [[24, "readme-md"]], "RF Coil": [[74, "rf-coil"]], "RF Coils": [[6, "rf-coils"]], "RF Lab": [[98, "rf-lab"]], "Raw entities": [[24, "raw-entities"]], "Raw extensions": [[24, "raw-extensions"]], "Raw structure": [[24, "raw-structure"]], "Raw suffixes": [[24, "raw-suffixes"]], "Reboot station with Terminal ": [[66, "reboot-station-with-terminal"]], "Recipe from LIOM (used at ICM)": [[106, "recipe-from-liom-used-at-icm"]], "Recipe from Nibardo": [[106, "recipe-from-nibardo"]], "Recipe from UNF": [[106, "recipe-from-unf"]], "Recommendations ": [[43, "recommendations"]], "Reconstruct raw data": [[79, "reconstruct-raw-data"]], "Recover lost commits after rebase": [[38, "recover-lost-commits-after-rebase"]], "Recovery": [[66, "recovery"]], "Recovery Shortcut": [[27, "recovery-shortcut"]], "Reduce the size of the VM ": [[62, "reduce-the-size-of-the-vm"]], "Reference": [[34, "reference"]], "Reference ": [[37, "reference"]], "Reference manager": [[109, "reference-manager"]], "References": [[14, "references"], [27, "references"]], "Reimbursement": [[20, "reimbursement"]], "Reimbursements": [[98, "reimbursements"]], "Releases": [[27, "releases"]], "Remove Docker image or containers (force deletion) ": [[53, "remove-docker-image-or-containers-force-deletion"]], "Remove Tag": [[38, "remove-tag"]], "Remove a branch": [[38, "remove-a-branch"]], "Remove files from tmp ": [[30, "remove-files-from-tmp"]], "Rename files with a given extension": [[30, "rename-files-with-a-given-extension"]], "Renaming": [[27, "renaming"], [27, "id2"], [30, "renaming"]], "Requirements for Polytechnique": [[22, "requirements-for-polytechnique"]], "Requirements for room access": [[81, "requirements-for-room-access"]], "Research Associates": [[88, "research-associates"]], "Reset Commit": [[38, "reset-commit"]], "Reset your branch (revert your local commits)": [[38, "reset-your-branch-revert-your-local-commits"]], "Resetting": [[39, "resetting"]], "Resources": [[4, "resources"], [71, "resources"], [72, "resources"]], "Restrict Gradient Deformation": [[41, "restrict-gradient-deformation"]], "Restricted Boltzmann Machines (RBM)": [[36, "restricted-boltzmann-machines-rbm"]], "Retrieve an old backup": [[15, "retrieve-an-old-backup"]], "Reviewers": [[93, "reviewers"]], "Reviewing Pull Requests": [[27, "reviewing-pull-requests"]], "Right-click sharing for Google Drive": [[66, "right-click-sharing-for-google-drive"]], "Rods": [[98, "rods"]], "Rollbacks": [[38, "rollbacks"]], "Run Docker image ": [[53, "run-docker-image"]], "Run with DISPLAY redirection ": [[53, "run-with-display-redirection"]], "Running MacOS ": [[61, "running-macos"]], "Running Remotely": [[46, "running-remotely"]], "SFTP (Mount a remote station)": [[15, "sftp-mount-a-remote-station"]], "SSH": [[63, "ssh"]], "SSH (command line)": [[15, "ssh-command-line"]], "SSH Public Key": [[30, "ssh-public-key"]], "SSH into Box ": [[61, "ssh-into-box"]], "SSH tunnelling": [[17, "ssh-tunnelling"]], "Save a Docker image ": [[53, "save-a-docker-image"]], "Scheduled reboots": [[15, "scheduled-reboots"]], "Sci-Kit Learn Tools ": [[36, "sci-kit-learn-tools"]], "Screen (for background processes)": [[30, "screen-for-background-processes"]], "Screenshot in desired format ": [[66, "screenshot-in-desired-format"]], "Script": [[31, "script"]], "Search file name": [[38, "search-file-name"]], "Search for remote image": [[53, "search-for-remote-image"]], "Segmentation": [[9, "segmentation"]], "Select default branches for pushing": [[38, "select-default-branches-for-pushing"]], "Servers": [[66, "servers"]], "Services": [[73, "services"]], "Set The Expanded Print Dialogue As Default ": [[66, "set-the-expanded-print-dialogue-as-default"]], "Set The Expanded Save Dialogue As Default ": [[66, "set-the-expanded-save-dialogue-as-default"]], "Setup": [[84, "setup"]], "Share with Authors": [[20, "share-with-authors"]], "Shared folder ": [[62, "shared-folder"]], "Sharing Data": [[14, "sharing-data"]], "Shimming": [[74, "shimming"]], "Short-term, very rapid access (no backup)": [[17, "short-term-very-rapid-access-no-backup"]], "Show changed files between two commits": [[38, "show-changed-files-between-two-commits"]], "Simulators": [[74, "simulators"]], "Size of folder": [[30, "size-of-folder"]], "Sketchup": [[59, "sketchup"]], "Small 3D printer (in Frederic Lesage\u2019s lab)": [[100, "small-3d-printer-in-frederic-lesage-s-lab"]], "Smoothing": [[40, "smoothing"]], "Software": [[17, "software"], [73, "software"]], "Software Installed": [[15, "software-installed"]], "Software development": [[93, "software-development"]], "Software-specific": [[66, "software-specific"]], "Solution 1": [[66, "solution-1"], [66, "id1"]], "Solution 2": [[66, "solution-2"], [66, "id2"]], "Solution 3": [[66, "solution-3"]], "SourceTree": [[38, "sourcetree"]], "Spinal Cord Injury": [[9, "spinal-cord-injury"]], "Spinal Cord Segmentation on MRI Data": [[3, "spinal-cord-segmentation-on-mri-data"]], "Spinal Cord Toolbox": [[74, "spinal-cord-toolbox"]], "Standard Operating Procedure - Reconstructing RAW data MHI-7T": [[77, "standard-operating-procedure-reconstructing-raw-data-mhi-7t"]], "Startup/Provision Settings ": [[61, "startup-provision-settings"]], "Stdout / Stderr ": [[30, "stdout-stderr"]], "Stickers": [[20, "stickers"]], "Storage": [[17, "storage"]], "Straighten Spinal Cord ": [[50, "straighten-spinal-cord"]], "Strings": [[31, "strings"]], "Students and Interns": [[94, "students-and-interns"]], "Subject naming convention": [[24, "subject-naming-convention"]], "Submit a pull request": [[38, "submit-a-pull-request"]], "Submitting a Pull Request (PR)": [[93, "submitting-a-pull-request-pr"]], "Switch local repository to another branch": [[38, "switch-local-repository-to-another-branch"]], "Switch to another branch": [[38, "switch-to-another-branch"]], "Tags": [[38, "tags"]], "Talk": [[20, "talk"]], "Technical Specifications": [[76, "technical-specifications"], [77, "technical-specifications"]], "Tele-medicine": [[97, "tele-medicine"]], "Tensorboard": [[17, "tensorboard"]], "Tensorflow": [[37, "tensorflow"]], "Terminal": [[66, "terminal"]], "Testing": [[93, "testing"]], "TextMate": [[66, "textmate"]], "The Research Proposal": [[10, "the-research-proposal"]], "Theses": [[5, "theses"]], "Tips and Tricks": [[13, "tips-and-tricks"], [72, "tips-and-tricks"]], "Tips for writing scientific articles": [[109, "tips-for-writing-scientific-articles"]], "Toolbox ": [[71, "toolbox"]], "Track remote branch": [[38, "track-remote-branch"]], "Transfer Files": [[13, "transfer-files"]], "Transferring Data from JACARANDA": [[12, "transferring-data-from-jacaranda"]], "Translation": [[41, "translation"]], "Trash: Stuck when being emptied": [[66, "trash-stuck-when-being-emptied"]], "Travel awards": [[108, "travel-awards"]], "Troubleshooting": [[18, "troubleshooting"], [27, "troubleshooting"], [38, "troubleshooting"], [39, "troubleshooting"], [50, "troubleshooting"], [66, "troubleshooting"], [70, "troubleshooting"]], "Tutorials & Courses": [[38, "tutorials-courses"]], "Tutorials/Links": [[31, "tutorials-links"]], "Tutorials:": [[38, "tutorials"]], "U-Net": [[3, "u-net"]], "UNF (3T Prisma)": [[79, "unf-3t-prisma"]], "USB to Serial adapter for spine shim coil (OSX El Capitan)": [[104, "usb-to-serial-adapter-for-spine-shim-coil-osx-el-capitan"]], "Ubuntu 14.04 ": [[62, "ubuntu-14-04"]], "Uncertainty": [[3, "uncertainty"]], "Uninstall": [[49, "uninstall"]], "Universit\u00e9 de Montr\u00e9al": [[22, "universite-de-montreal"], [22, "id4"], [22, "id7"]], "Update": [[27, "update"]], "Update your branch": [[38, "update-your-branch"]], "Upload": [[27, "upload"], [38, "upload"]], "Upload local repository for the first time": [[38, "upload-local-repository-for-the-first-time"]], "Usage": [[27, "usage"], [50, "usage"], [58, "usage"]], "Use a service": [[66, "use-a-service"]], "Useful Links": [[106, "useful-links"]], "Useful Packages": [[72, "useful-packages"]], "Useful aliases": [[38, "useful-aliases"]], "Useful links/Software": [[73, "useful-links-software"]], "Useful shortcuts for OSX ": [[57, "useful-shortcuts-for-osx"]], "Using Docker": [[53, "using-docker"]], "Using Guest Additions (recommended) ": [[62, "using-guest-additions-recommended"]], "Using JACARANDA and ELM": [[12, "using-jacaranda-and-elm"]], "Using XCode": [[70, "using-xcode"]], "VIM Text Editor": [[30, "vim-text-editor"]], "VNC (graphical interface)": [[15, "vnc-graphical-interface"]], "VPN": [[15, "vpn"]], "Vagrant": [[61, "vagrant"]], "Vagrantfile ": [[61, "vagrantfile"]], "Various Software & Tools": [[51, "various-software-tools"]], "Versioning": [[93, "versioning"]], "Very small 3D printer (in technician\u2019s office)": [[100, "very-small-3d-printer-in-technician-s-office"]], "Virtual Environments": [[72, "virtual-environments"]], "Virtual Machines": [[60, "virtual-machines"]], "VirtualBox": [[25, "virtualbox"], [62, "virtualbox"]], "Visualization": [[72, "visualization"]], "Visualizing Warping Field": [[41, "visualizing-warping-field"]], "VnmrJ Station Credentials": [[77, "vnmrj-station-credentials"]], "Walk-in": [[97, "walk-in"]], "Websites": [[73, "websites"]], "Wet Lab": [[98, "wet-lab"]], "What if I don\u2019t want to use the closed-source tool?": [[84, "what-if-i-don-t-want-to-use-the-closed-source-tool"]], "What is the first step/Where do I start?": [[10, "what-is-the-first-step-where-do-i-start"]], "What is the structure of the exam?": [[10, "what-is-the-structure-of-the-exam"]], "When to give this exam?": [[10, "when-to-give-this-exam"]], "White Papers": [[28, "white-papers"]], "WiFi Access: Eduroam": [[81, "wifi-access-eduroam"]], "Wiki 7T Scanner ICM ": [[77, "wiki-7t-scanner-icm"]], "Work in Progress": [[93, "work-in-progress"]], "Working on \u201cEpic\u201d Changes": [[93, "working-on-epic-changes"]], "Writing Platforms": [[109, "writing-platforms"]], "Written Exam": [[10, "written-exam"]], "XQuartz": [[63, "xquartz"]], "XQuartz Terminal": [[63, "xquartz-terminal"]], "Yosemite Issue ": [[71, "yosemite-issue"]], "YouTube Procedure": [[19, "youtube-procedure"]], "abbey": [[15, "abbey"], [16, "abbey"]], "annex.thin Hardlinks ": [[39, "annex-thin-hardlinks"]], "bireli": [[15, "bireli"]], "checking annex file locations": [[39, "checking-annex-file-locations"]], "code/": [[24, "code"]], "convergence": [[41, "convergence"]], "data": [[27, "data"]], "dataset_description.json": [[24, "dataset-description-json"]], "derivatives/labels/dataset_description.json": [[24, "derivatives-labels-dataset-description-json"]], "derivatives/labels/descriptions.tsv": [[24, "derivatives-labels-descriptions-tsv"]], "display log": [[66, "display-log"]], "django": [[25, "django"]], "duke": [[26, "duke"]], "fitzgerald": [[15, "fitzgerald"]], "fslview opening out of screen": [[66, "fslview-opening-out-of-screen"]], "generate dwi_mean in same folder": [[66, "generate-dwi-mean-in-same-folder"]], "git-annex": [[39, "git-annex"]], "gpg": [[38, "gpg"]], "idea3t": [[15, "idea3t"]], "idea7t": [[15, "idea7t"]], "joplin": [[15, "joplin"], [16, "joplin"]], "kill a process based on PID": [[30, "kill-a-process-based-on-pid"]], "kill a process from a user": [[30, "kill-a-process-from-a-user"]], "mds_stores using high CPU load": [[66, "mds-stores-using-high-cpu-load"]], "metric": [[41, "metric"]], "niftiviewer.app (MacOS) ": [[83, "niftiviewer-app-macos"]], "node006 (Poly-Grames)": [[15, "node006-poly-grames"]], "node007 (Poly-Grames)": [[15, "node007-poly-grames"]], "participants.json": [[24, "participants-json"]], "participants.tsv": [[24, "participants-tsv"]], "peterson": [[15, "peterson"]], "port 22: Connection refused": [[38, "port-22-connection-refused"]], "rm: cannot remove": [[39, "rm-cannot-remove"]], "romane": [[15, "romane"]], "rosenberg": [[15, "rosenberg"]], "smoothing-sigmas": [[41, "smoothing-sigmas"]], "tar": [[30, "tar"]], "transform": [[41, "transform"]], "tristano": [[15, "tristano"]], "version problems": [[39, "version-problems"]], "vnmrj": [[15, "vnmrj"]], "zip": [[30, "zip"]], "\u200bEthics": [[75, "ethics"]], "\u201ca cosmetic problem affecting git status\u201d": [[39, "a-cosmetic-problem-affecting-git-status"]], "\u2708\ufe0f Flights": [[96, "flights"]], "\ud83c\udfe0 Accommodation": [[96, "accommodation"]]}, "docnames": ["README", "agenda-and-calendar", "bibliography/README", "bibliography/deep-learning", "bibliography/histology", "bibliography/lab-theses", "bibliography/mri", "bibliography/mri-analysis", "bibliography/shared-paperpile-folder", "bibliography/spinal-cord-injury", "comprehensive-exam-guide", "computing-resources/README", "computing-resources/clusters-at-criugm", "computing-resources/compute-canada", "computing-resources/microsoft365", "computing-resources/neuropoly/README", "computing-resources/neuropoly/cpus", "computing-resources/neuropoly/gpus", "computing-resources/printer", "computing-resources/youtube", "conferences", "contact", "courses", "data/README", "data/dataset-curation", "data/django", "data/duke", "data/git-datasets", "edi", "geek-tips/README", "geek-tips/bash-shell/README", "geek-tips/bash-shell/script", "geek-tips/deep-learning/README", "geek-tips/deep-learning/conditional-random-fields-crf", "geek-tips/deep-learning/cuda", "geek-tips/deep-learning/misc", "geek-tips/deep-learning/restricted-boltzmann-machines", "geek-tips/deep-learning/tensorflow", "geek-tips/git", "geek-tips/git-annex", "geek-tips/image-processing-software/README", "geek-tips/image-processing-software/advanced-normalization-tools-ants", "geek-tips/image-processing-software/anima", "geek-tips/image-processing-software/diffusion-simulator", "geek-tips/image-processing-software/freesurfer", "geek-tips/image-processing-software/fsl/README", "geek-tips/image-processing-software/fsl/fsleyes", "geek-tips/image-processing-software/itk-snap", "geek-tips/image-processing-software/nifti", "geek-tips/image-processing-software/openneuro-cli", "geek-tips/image-processing-software/osirix", "geek-tips/misc/README", "geek-tips/misc/bitbucket", "geek-tips/misc/docker/README", "geek-tips/misc/docker/docker-for-deep-learning", "geek-tips/misc/dropbox", "geek-tips/misc/jekyll", "geek-tips/misc/microsoft-word", "geek-tips/misc/openneuro", "geek-tips/misc/sketchup", "geek-tips/misc/virtual-machines/README", "geek-tips/misc/virtual-machines/vagrant", "geek-tips/misc/virtual-machines/virtualbox", "geek-tips/misc/xquartz", "geek-tips/os-guides/README", "geek-tips/os-guides/linux", "geek-tips/os-guides/macosx", "geek-tips/programming-languages/README", "geek-tips/programming-languages/c++/README", "geek-tips/programming-languages/c++/installation-of-vtk-and-itk-on-mac-os-x", "geek-tips/programming-languages/c++/using-xcode", "geek-tips/programming-languages/matlab", "geek-tips/programming-languages/python", "geek-tips/useful-links", "ideas-for-cool-projects", "mri-scanning/README", "mri-scanning/concordia-ge", "mri-scanning/mhi-7t-agilent", "mri-scanning/mni-mcgill-7t-terra", "mri-scanning/unf-3t-prisma", "onboarding/README", "onboarding/campus-access", "onboarding/computer-setup/README", "onboarding/computer-setup/configuration-tips", "onboarding/computer-setup/eduroam", "onboarding/computer-setup/mail", "onboarding/computer-setup/shell-profile", "onboarding/computer-setup/slack", "onboarding/consultants-ra", "onboarding/dropbox-google-drive", "onboarding/getting-started", "onboarding/infrastructure", "onboarding/postdoc", "onboarding/software-development", "onboarding/students-interns", "practical-information/README", "practical-information/living-in-montreal", "practical-information/medical", "practical-information/purchasing-hardware-and-lab-supplies", "practical-information/visa", "rf-lab/3d-printing/README", "rf-lab/3d-printing/octoprint", "rf-lab/README", "rf-lab/cnc-machine", "rf-lab/misc", "rf-lab/mri-coils-at-neuropoly", "rf-lab/mri-phantoms", "rf-lab/pcb-manufacturing", "scholarships", "writing-articles"], "envversion": {"sphinx": 61, "sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2}, "filenames": ["README.md", "agenda-and-calendar.md", "bibliography/README.md", "bibliography/deep-learning.md", "bibliography/histology.md", "bibliography/lab-theses.md", "bibliography/mri.md", "bibliography/mri-analysis.md", "bibliography/shared-paperpile-folder.md", "bibliography/spinal-cord-injury.md", "comprehensive-exam-guide.md", "computing-resources/README.md", "computing-resources/clusters-at-criugm.md", "computing-resources/compute-canada.md", "computing-resources/microsoft365.md", "computing-resources/neuropoly/README.md", "computing-resources/neuropoly/cpus.md", "computing-resources/neuropoly/gpus.md", "computing-resources/printer.md", "computing-resources/youtube.md", "conferences.md", "contact.md", "courses.md", "data/README.md", "data/dataset-curation.md", "data/django.md", "data/duke.md", "data/git-datasets.md", "edi.md", "geek-tips/README.md", "geek-tips/bash-shell/README.md", "geek-tips/bash-shell/script.md", "geek-tips/deep-learning/README.md", "geek-tips/deep-learning/conditional-random-fields-crf.md", "geek-tips/deep-learning/cuda.md", "geek-tips/deep-learning/misc.md", "geek-tips/deep-learning/restricted-boltzmann-machines.md", "geek-tips/deep-learning/tensorflow.md", "geek-tips/git.md", "geek-tips/git-annex.md", "geek-tips/image-processing-software/README.md", "geek-tips/image-processing-software/advanced-normalization-tools-ants.md", "geek-tips/image-processing-software/anima.md", "geek-tips/image-processing-software/diffusion-simulator.md", "geek-tips/image-processing-software/freesurfer.md", "geek-tips/image-processing-software/fsl/README.md", "geek-tips/image-processing-software/fsl/fsleyes.md", "geek-tips/image-processing-software/itk-snap.md", "geek-tips/image-processing-software/nifti.md", "geek-tips/image-processing-software/openneuro-cli.md", "geek-tips/image-processing-software/osirix.md", "geek-tips/misc/README.md", "geek-tips/misc/bitbucket.md", "geek-tips/misc/docker/README.md", "geek-tips/misc/docker/docker-for-deep-learning.md", "geek-tips/misc/dropbox.md", "geek-tips/misc/jekyll.md", "geek-tips/misc/microsoft-word.md", "geek-tips/misc/openneuro.md", "geek-tips/misc/sketchup.md", "geek-tips/misc/virtual-machines/README.md", "geek-tips/misc/virtual-machines/vagrant.md", "geek-tips/misc/virtual-machines/virtualbox.md", "geek-tips/misc/xquartz.md", "geek-tips/os-guides/README.md", "geek-tips/os-guides/linux.md", "geek-tips/os-guides/macosx.md", "geek-tips/programming-languages/README.md", "geek-tips/programming-languages/c++/README.md", "geek-tips/programming-languages/c++/installation-of-vtk-and-itk-on-mac-os-x.md", "geek-tips/programming-languages/c++/using-xcode.md", "geek-tips/programming-languages/matlab.md", "geek-tips/programming-languages/python.md", "geek-tips/useful-links.md", "ideas-for-cool-projects.md", "mri-scanning/README.md", "mri-scanning/concordia-ge.md", "mri-scanning/mhi-7t-agilent.md", "mri-scanning/mni-mcgill-7t-terra.md", "mri-scanning/unf-3t-prisma.md", "onboarding/README.md", "onboarding/campus-access.md", "onboarding/computer-setup/README.md", "onboarding/computer-setup/configuration-tips.md", "onboarding/computer-setup/eduroam.md", "onboarding/computer-setup/mail.md", "onboarding/computer-setup/shell-profile.md", "onboarding/computer-setup/slack.md", "onboarding/consultants-ra.md", "onboarding/dropbox-google-drive.md", "onboarding/getting-started.md", "onboarding/infrastructure.md", "onboarding/postdoc.md", "onboarding/software-development.md", "onboarding/students-interns.md", "practical-information/README.md", "practical-information/living-in-montreal.md", "practical-information/medical.md", "practical-information/purchasing-hardware-and-lab-supplies.md", "practical-information/visa.md", "rf-lab/3d-printing/README.md", "rf-lab/3d-printing/octoprint.md", "rf-lab/README.md", "rf-lab/cnc-machine.md", "rf-lab/misc.md", "rf-lab/mri-coils-at-neuropoly.md", "rf-lab/mri-phantoms.md", "rf-lab/pcb-manufacturing.md", "scholarships.md", "writing-articles.md"], "indexentries": {}, "objects": {}, "objnames": {}, "objtypes": {}, "terms": {"": [1, 3, 6, 9, 10, 13, 14, 15, 17, 19, 20, 24, 25, 27, 30, 31, 35, 36, 38, 39, 40, 41, 50, 52, 62, 66, 69, 70, 74, 75, 78, 81, 84, 86, 89, 93, 98, 109], "0": [13, 17, 24, 27, 30, 31, 34, 35, 37, 39, 41, 43, 50, 53, 54, 62, 65, 69, 70, 71, 86, 93, 98, 101, 106, 109], "00": [13, 15, 17, 27, 39], "000": 43, "0000": 17, "00000000": 17, "0000000000000000": 17, "00000000fee09000": 17, "00000000fee0a000": 17, "00000000fee1d000": 17, "00000000fee24000": 17, "0001": 17, "000182": 17, "000461": 17, "000w": 17, "001": 24, "00179": 109, "001_acq": 24, "001_flip": 24, "001_unit1_desc": 24, "002": 24, "0023": 17, "003": 24, "005": [24, 41], "007": 24, "01": [17, 106], "010": 24, "02": [3, 27, 62, 69], "023": 24, "024": 17, "02_acq": 24, "03": [13, 17, 20], "031": 104, "0312": 17, "033": 31, "03g": 31, "04": [15, 17, 20, 27, 34, 39, 53, 54, 65, 66], "0400": 39, "042005": 98, "049703": 41, "04lt": 37, "05": [17, 20, 62], "0500": 27, "06": [3, 17, 27, 39], "06035": 98, "06038": 98, "0644": 39, "07": [20, 24], "07244": 109, "0781": 17, "08": 20, "09": [17, 20, 42], "09412": 3, "0a": 17, "0avgdata": 17, "0avgtext": 17, "0b2": 37, "0bin": 30, "0ee2b5d73xfpz2gvp81z": 98, "0input": 17, "0m": 31, "0ma": 17, "0major": 17, "0n": 17, "0output": 17, "0swap": 17, "0t": 76, "0u": 17, "0ubuntu0": 17, "0x0": 41, "0x0x5vox": 40, "1": [6, 10, 13, 17, 20, 22, 24, 27, 30, 31, 34, 38, 39, 40, 41, 43, 48, 50, 53, 65, 71, 72, 74, 77, 86, 93, 98, 101, 106, 108, 109], "10": [3, 6, 9, 15, 17, 20, 24, 26, 30, 34, 39, 62, 66, 86, 93, 104, 109], "100": [17, 24, 30, 41, 66, 71, 74, 98], "1000": [20, 62, 77], "10000": [39, 50], "100000": 41, "10000x10000x10000": 41, "1000ml": 106, "1001": 39, "1002": 6, "1007": 3, "100mb": 30, "100n": 17, "100x10x5": 41, "102": 6, "1023": 13, "10235mib": 17, "1024": 13, "10243mib": 17, "10245mib": 17, "1024m": 13, "10253mib": 17, "103": 17, "104": 17, "105": 17, "106": 17, "107": 17, "108": 77, "10bittagcomp": 17, "10bittagreq": 17, "10de": 17, "10gb": 13, "10ghz": 15, "10mib": 17, "10u": 17, "11": [1, 17, 20, 26, 27, 34, 39, 41, 69, 109], "110": 17, "111": 72, "1111789minor": 17, "1123": 9, "114": [17, 77], "1140317": 39, "1140317_t1w_seg": 39, "115": 17, "1160": 106, "117": 17, "11782": 9, "1179": 89, "1198440minor": 17, "11user": 17, "12": [6, 9, 15, 16, 17, 27, 34, 37, 49, 77, 98, 109], "120": [1, 99], "12288": 26, "123": 38, "1232": 6, "124": 97, "1250": 17, "127": [17, 53], "128": 17, "128bitca": 17, "128mb": 17, "12gb": 15, "13": [13, 17, 20, 24, 26, 34], "131": 17, "1319996": 39, "132": [100, 107], "1328": 17, "135": 77, "13684mib": 17, "139": 17, "14": [17, 20, 24, 26, 34, 37, 39, 43, 54, 65, 71, 77], "140": 1, "144": 1, "1445": 17, "148": 17, "15": [1, 6, 17, 20, 27, 34, 39, 62], "150": [17, 31, 74], "150g": 77, "151": 17, "152": 17, "153": 17, "1532": 17, "154": 100, "1562": 17, "157": 17, "159": 77, "15tb": 26, "16": [1, 6, 13, 15, 17, 20, 26, 34, 39, 43, 50, 53, 54, 77, 98], "160": 17, "1600x1200": 15, "161": 17, "161873978": 39, "16280mib": 17, "16364": 98, "165": 77, "1657": 78, "16gb": [15, 17], "16gt": 17, "16k": 17, "16m": 17, "16mb": 17, "16w": 17, "16x": 15, "17": [9, 17, 20, 26, 39, 71, 98], "17018": 9, "1710": 3, "173": 17, "17329258": 69, "175": 97, "1790": 106, "17th": 38, "17w": 17, "18": [9, 17, 20, 24, 26, 71], "18000000000": 17, "18010000000": 17, "184": [17, 77], "187": 6, "1875": 17, "18g": 17, "19": [17, 20, 39, 78], "190258": 109, "193": 17, "194": 17, "195": 17, "1969": 6, "198": 30, "1990": 6, "1996": 6, "1_mt": 24, "1e2265d2af1616fe7b5dc23": 17, "1e3zcakkiyaa9ewduxihvaif5fy2iif27": 74, "1er": 1, "1gb": [13, 17], "1l": [77, 98], "1mib": 17, "1pm": 27, "1tb": [13, 27], "1ubuntu1": 17, "1vox": 40, "1x": 15, "1x1mm": 41, "1x1x0": 41, "2": [6, 10, 13, 15, 17, 20, 22, 24, 26, 27, 30, 31, 34, 37, 38, 39, 41, 61, 65, 69, 71, 72, 74, 77, 93, 98, 99, 108, 109], "20": [1, 15, 17, 20, 26, 39, 41, 62, 98], "200": 43, "2000": [20, 43], "20000": 17, "2001": 33, "2003": 33, "20030000000": 17, "20040000000": 17, "20040724203315798": 66, "2007": 9, "2008": 66, "2010": 62, "2012": 62, "2013": [22, 38, 62, 69], "2014": [17, 22, 41, 69, 108], "2015": [6, 20], "20150120_dmri_nogs": 89, "20150314_frq": 89, "20150530_ismrm": 89, "2015_neuroimag": 89, "2016": [9, 17, 20], "2017": [9, 17, 20], "20170515_report": 89, "2017_mrm": 109, "2018": [6, 20, 42, 75], "2019": [3, 6, 9, 20, 22, 27, 75, 109], "2020": [17, 20, 39, 75, 109], "2021": [3, 6, 10, 17, 20, 27, 39, 75], "20210310": 39, "2022": [6, 10, 17, 20, 27, 75], "2023": [6, 20, 24, 75], "2024": [20, 75, 84], "2025": 20, "204": 1, "2041807": 104, "2043b": 22, "2048": 61, "2050d": 39, "206": 97, "207": [100, 107], "20explain": 48, "21": [15, 20, 26, 98], "210": 100, "215990860603743": 78, "2167": 97, "2188": 17, "22": [9, 17, 20, 39], "222": 17, "225": 20, "22764": 3, "229": 104, "22c": 17, "22w": 17, "23": [20, 26, 96, 98, 100], "238": 17, "239": 17, "23c": 17, "23w": 17, "23x18": 20, "24": [12, 20, 27, 30, 98], "240": 17, "241": 17, "2422": 17, "24c": 17, "24h": 30, "25": [10, 17, 20, 77, 93], "2500": 17, "250ml": 98, "255": 13, "255u": 17, "256": [13, 17], "256m": 17, "256mb": 17, "257": 17, "258": 17, "259": 17, "25c": 17, "25g": 106, "25x28": 20, "26": [17, 20, 27, 98], "261893952": 39, "2630": 15, "2643384": 104, "267": 1, "26c": 17, "27": [9, 17, 20, 27, 98], "27c": 17, "28": [17, 20, 39, 108], "28060000000": 17, "28070000000": 17, "282": [9, 78], "28305": 39, "287db3a": 37, "28_linux": 34, "29": [17, 20], "290a43b80da6f608e3d47107f3b6c05e98eebe56ed4eea633748c08bd1a7837a": 39, "29381": 6, "298": 1, "299": 77, "29c": 17, "2_mt": 24, "2_threshold": 17, "2a1e9307": 41, "2d": [31, 41, 50, 72, 93], "2e": 43, "2gb": 17, "2l": 98, "2nd": [66, 77], "2retim": 17, "2x": 15, "3": [1, 3, 6, 9, 10, 13, 15, 17, 20, 22, 24, 27, 30, 31, 34, 37, 38, 39, 41, 57, 58, 61, 65, 69, 72, 76, 98, 99, 106, 109], "30": [10, 17, 20, 24, 31, 69, 98, 109], "300": [20, 77], "3000": [17, 43], "30000": 17, "3003": 98, "3006": 98, "300mt": 77, "300v": 77, "300w": 17, "30m": 31, "30t02": 27, "30x20": 20, "31": [20, 31], "310": [9, 77], "31700m": 13, "318": [1, 77], "319": 3, "3195465": 66, "31c": 17, "31m": [31, 86], "31system": 17, "31w": 17, "32": [15, 17, 27, 31, 41, 98], "321874946": 39, "32263": 17, "32264": 17, "322736": 109, "32454": 109, "324636": 109, "3262ac5d6c5f573720c5e508da47608bd9fa49d6cd4dd547f75046c1a2f0d5b6": 39, "32bit": 17, "32c": 17, "32ch": 76, "32gb": [15, 17], "32m": 17, "32mb": 17, "32mtext": 31, "33": [17, 31], "33062": 17, "33063": 17, "3318major": 17, "338": 1, "33w": 17, "34": [1, 17, 31], "340c": 98, "3439mib": 17, "34824": 109, "3494785": 66, "35": [9, 17, 26, 31], "350": 71, "35031": 98, "35147": 17, "35450": 109, "357": 97, "36": [26, 27, 31], "365": 11, "367": 37, "368g": 17, "36m": 86, "37": [17, 26, 27, 31], "3750": 17, "3770": 98, "38": [17, 26, 27], "381": 104, "3850": 98, "38c": 17, "38m": 86, "3997": 97, "3d": [3, 22, 41, 43, 46, 47, 50, 66, 69, 72, 73, 74, 102], "3d55fe9a3b6f04f5a6bd1b50274108de1810fcc8": 27, "3daa207ea45c75722bd0e3bc914dce3a": 30, "3dprinter4u": 100, "3dverkstan": 100, "3f309650bbc2d5146d9e1d1e24c7b17ee82c9da2fb609030ee83f3c1f2d74acb": 39, "3g": 106, "3kg": 77, "3mib": 17, "3rd": 62, "3t": 74, "3x2x1": 41, "3y6aqecmkha9wwiffywwjea7egr": 27, "4": [9, 10, 13, 15, 17, 22, 24, 30, 34, 39, 41, 43, 61, 65, 77, 98, 106, 108, 109], "40": [9, 24, 38], "400": [1, 71], "403": 74, "404041": 17, "404415": 17, "404712": 17, "405001": 17, "405275": 17, "405553": 17, "405838": 17, "406104": 17, "406373": 17, "406651": 17, "4096": [26, 39], "4096k": 62, "40output": 17, "41": [17, 104], "419618": 17, "419961": 17, "41w": 17, "42": [6, 17], "420": 17, "420291": 17, "420552": 17, "420848": 17, "420981": 30, "421108": 17, "424": 22, "425mib": 17, "428mib": 17, "43": 24, "4326": 104, "44": [9, 17, 26], "440": 17, "440g": 17, "443": 38, "45": [17, 26, 39], "453": 55, "457": 27, "4589610": 98, "46": 98, "46720": 17, "468": 1, "47": 17, "47499mib": 17, "47502mib": 17, "48": [13, 17], "4809v4": 15, "4846888maxresid": 17, "48gb": 15, "49140mib": 17, "495": 17, "496": 104, "49user": 17, "4d": [41, 46], "4gb": 17, "4h2": 97, "4th": 10, "4u": 17, "4x": 15, "4x2x1vox": 41, "5": [13, 15, 17, 20, 24, 30, 31, 37, 38, 39, 40, 41, 54, 61, 74, 77, 98, 106, 109], "50": [1, 10, 17, 24, 38, 74, 77], "500": [22, 71], "5000": 17, "50000": 43, "50g": 17, "50m": 17, "50mm": 100, "50u": 17, "50x50x50": 41, "51": [17, 30], "510": 17, "512": 17, "512k": 17, "512mb": 17, "512n": 17, "514": 97, "515938": 86, "5198356maxresid": 17, "51w": 17, "52": 17, "520": 22, "521": 97, "525022": 17, "525362": 17, "525648": 17, "525931": 17, "527": 97, "529": 22, "52w": 17, "53": [17, 22], "54": [1, 27], "54elaps": 17, "55": [77, 106], "5500": 18, "551": 22, "5555": 97, "558": 22, "56": [17, 39], "560336": 17, "560681": 17, "560964": 17, "561247": 17, "5613": 81, "561525": 17, "561798": 17, "5619": [18, 81], "562070": 17, "562342": 17, "5625": 17, "5626": 81, "5655": 97, "57": [17, 77], "570": 22, "573495": 17, "57887": 17, "58": 17, "58390": 17, "5883": 97, "5886": 109, "59": 6, "5930k": 15, "5_sampl": 34, "5cm": 20, "5d": 41, "5db": 17, "5fl": 98, "5g": 106, "5ghz": 15, "5gt": 17, "5h2o": 106, "5pm": [10, 22], "6": [13, 15, 17, 22, 24, 27, 30, 34, 39, 41, 43, 54, 61, 66, 70, 72, 74, 77, 98, 108, 109], "60": [17, 20], "600": [1, 17, 77], "6008": 17, "6009": 17, "600mt": 77, "602": 22, "603": 22, "607": 22, "6094": 17, "610": 22, "612": 22, "62": 17, "624": 1, "6250": 17, "626": 22, "63": [6, 17], "630": 1, "631": 1, "632": 1, "634": 1, "638": 77, "64": [12, 16, 17], "640x480": 93, "6433mib": 17, "6436mib": 17, "644": 30, "64bit": 17, "64gb": [15, 17], "64mb": 17, "64u": 17, "65": [17, 107], "650": [22, 27], "65w": 17, "66": [1, 17], "660": 22, "66179": 3, "66mhz": 17, "6719": 17, "68": 17, "683": 22, "6875": 17, "68w": 17, "69w": 17, "6db": 17, "6v": 39, "7": [13, 15, 17, 20, 26, 37, 39, 54, 58, 69, 72, 77, 109], "70": 17, "700": 41, "7000": 17, "701": 30, "70237": 98, "70240": 98, "707424input": 17, "708": 1, "71system": 17, "72": [20, 38], "73": [6, 17, 22, 98], "735": 97, "737": 9, "7452": 15, "75": [17, 77], "750": 13, "7500": 17, "755": 30, "75g": 106, "76": 22, "7656": 17, "766": 22, "76jkx": 30, "77": [17, 98], "775": 55, "78": [17, 93, 106], "7812": 17, "79": 39, "7944": 81, "7_48": 3, "7d3e45f0d4c67f31883b76eafc6cfdca1c1591590e2243dc8d443b07616b3609": 39, "7h": 1, "7t": [6, 74], "8": [6, 10, 13, 15, 17, 20, 22, 26, 27, 30, 34, 37, 39, 41, 54, 65, 69, 77, 86, 98, 99, 109], "80": [17, 77, 93, 97], "800": [66, 71], "801500": 109, "802h": 39, "8080": 17, "81": 17, "811": 97, "8125": 17, "8192": 26, "81g": 39, "82": 98, "82w": 17, "83": 6, "8363576": 3, "8363652": 3, "84": 1, "840261": 41, "85": 17, "855": 97, "86": 17, "8653423": 3, "8750": 17, "878117": 34, "88": 6, "8888": 54, "89": 17, "8906": 17, "892c030faef331591048f8b6487dd65f74afbea7": 27, "89elaps": 17, "8a": 17, "8am": 22, "8cm": 20, "8gb": 17, "8th": [27, 74], "8x": 15, "9": [1, 17, 20, 24, 30, 34, 41, 98, 109], "90": [15, 17], "900": 17, "9062": 17, "91": [17, 100], "92": [9, 17], "92w": 17, "9375": 17, "938165": 17, "938506": 17, "938794": 17, "939082": 17, "94": 17, "94mhz": 77, "95": [24, 98], "9577": 98, "95g": 106, "9688": 17, "96bdd193d0da999895734a57f8bbfa275db91ad1": 27, "973280": 17, "975": 17, "978": [3, 109], "98": [17, 77], "98320": 97, "984221": 17, "984542": 17, "984816": 17, "985088": 17, "985364": 17, "985628": 17, "985890": 17, "986153": 17, "986416": 17, "986679": 17, "986945": 17, "987207": 17, "99": 17, "994256": 17, "994898": 17, "995": 41, "995454": 17, "996001": 17, "999064": 17, "99design": 73, "9am": 10, "9g": 106, "9h": 1, "A": [3, 4, 6, 7, 9, 10, 13, 15, 17, 19, 20, 22, 24, 27, 30, 36, 38, 39, 41, 53, 57, 66, 69, 75, 77, 81, 93, 104, 109], "AND": [24, 62, 77], "AT": 66, "And": [17, 27, 39, 66], "As": [10, 17, 27, 38, 54, 81, 84, 90], "At": [22, 34, 66, 69], "Be": [43, 97], "But": 10, "By": [15, 38], "FOR": 24, "For": [1, 3, 10, 12, 13, 15, 16, 17, 20, 22, 24, 25, 27, 28, 30, 38, 39, 41, 61, 62, 65, 66, 78, 81, 89, 90, 93, 99, 108, 109], "IF": 24, "IFS": 31, "IT": [21, 91], "If": [1, 13, 15, 17, 18, 20, 24, 26, 27, 28, 30, 34, 35, 38, 39, 46, 49, 50, 52, 53, 54, 55, 61, 62, 65, 66, 69, 70, 71, 72, 75, 78, 80, 81, 89, 90, 91, 92, 93, 94, 96, 97, 98, 104, 108, 109], "In": [1, 10, 15, 24, 26, 27, 38, 40, 41, 49, 52, 53, 54, 61, 62, 66, 69, 70, 79, 81, 83, 84, 85, 93, 102, 109], "It": [4, 10, 14, 20, 24, 26, 27, 30, 31, 38, 39, 40, 41, 46, 61, 62, 69, 75, 84, 93, 97, 99], "NO": [24, 34, 83], "NOT": [20, 25], "Near": 22, "No": [17, 22, 31, 34, 50, 69], "Not": [17, 66], "OF": [20, 24], "ON": [20, 41, 69], "ONE": [24, 109], "OR": 66, "On": [3, 10, 14, 15, 17, 30, 38, 53, 62, 66], "One": [13, 20, 66], "Or": [30, 38, 40, 62, 66, 72], "THE": 83, "THERE": 24, "TO": [13, 58, 66, 83], "That": [10, 24, 38, 87, 90, 98, 109], "The": [1, 3, 6, 13, 14, 15, 20, 22, 24, 25, 26, 27, 28, 30, 31, 34, 37, 38, 39, 40, 41, 42, 46, 49, 52, 53, 54, 61, 69, 70, 72, 75, 77, 79, 81, 84, 89, 93, 97, 98, 99, 100, 109], "Then": [13, 15, 17, 20, 24, 27, 30, 34, 38, 41, 62, 65, 66, 70, 85, 109], "There": [10, 13, 22, 24, 26, 27, 41, 66, 81, 97], "These": [10, 15, 24, 27, 55], "To": [1, 12, 13, 15, 17, 19, 20, 22, 24, 25, 26, 27, 30, 31, 38, 39, 40, 41, 46, 49, 50, 53, 55, 61, 62, 63, 66, 69, 70, 72, 81, 93, 99, 100, 106, 109], "WITH": 83, "With": [62, 70], "_": [24, 30], "__version__": 17, "_acq": 24, "_brain": 31, "_ce": 24, "_den": 24, "_desc": 24, "_develop": 70, "_dir": 24, "_dwi": 24, "_fxshowposixpathintitl": 66, "_label": 24, "_mean": 66, "_mt": 24, "_myfil": 55, "_part": 24, "_re": 24, "_rec": 24, "_reg_diffeo": 41, "_run": 24, "_se": 24, "_space": 24, "_versiontrack": 109, "a1": 17, "a205": 108, "a6000": [15, 17], "a7b20f20": 17, "a9539pi": 106, "aaaab3nzac1yc2eaaaadaqabaaabaqd": 27, "aaaac3nzac1lzdi1nte5aaaaid11n3hqpjp4okivd5xo3n0cuo24iomwxyv": 27, "aaaac3nzac1lzdi1nte5aaaaijwsjlem": 27, "aapm": 6, "aarep": 88, "aaron": 22, "ab": [17, 31], "abacu": 109, "abbei": 86, "abbrevi": 66, "abcd": 84, "abdolrezae": 9, "abl": [17, 20, 27, 34, 35, 38, 54, 70, 71, 74, 81, 84, 93, 109], "about": [0, 1, 3, 10, 15, 24, 27, 38, 39, 41, 66, 69, 70, 79, 81, 88, 93, 106], "abov": [15, 17, 20, 24, 27, 38, 39, 54, 62, 66, 81, 93, 100, 109], "absolut": [26, 61], "abstract": [3, 109], "abwmgmt": 17, "ac": [48, 66], "academ": [20, 22, 81], "academi": 6, "acceler": [37, 69, 108], "accept": [10, 15, 20, 22, 34, 38, 93, 99], "access": [1, 6, 8, 13, 14, 15, 20, 24, 25, 27, 30, 31, 38, 39, 66, 75, 77, 80, 85, 90, 100, 104, 109], "accommod": [20, 93, 99], "accomod": 20, "accompani": 93, "accord": [24, 27, 93], "accordingli": [28, 93], "account": [15, 17, 19, 20, 38, 39, 52, 54, 55, 66, 74, 78, 79, 81, 84, 85, 90, 109], "account_appl": 13, "accountchoos": 109, "accross": 24, "accur": [38, 98], "acdc": 104, "acdc_spine_7t_033p": 75, "acdc_spine_7t_049p": 78, "acdc_spine_7t_049p_20220923_111852672": 78, "acess": 12, "achiev": [38, 93], "acl": 66, "aclr8": 66, "acq": 24, "acquaint": 3, "acquir": [24, 74, 77], "acquisit": [6, 24, 75, 91], "acronym": 73, "acronymifi": 73, "across": [17, 22, 28, 31, 39, 74, 81, 84, 96], "acsviol": 17, "acta": 6, "actif": [15, 22], "action": [30, 31, 57, 66, 72, 93], "activ": [3, 12, 13, 17, 21, 26, 27, 46, 58, 66, 71, 72, 74, 77, 81, 86], "activewindow": 57, "actrim": 20, "actual": [20, 27, 41, 53], "acut": 9, "acutozgynqkjyi7kje9ulkhzo7n04qfc": 27, "ad": [1, 15, 22, 24, 25, 27, 30, 38, 39, 46, 49, 61, 66, 70, 74, 86, 89, 93, 98, 101, 109], "adad": [3, 9, 22, 109], "adapt": [17, 93], "adb": 39, "adblock": 66, "add": [1, 12, 15, 19, 20, 24, 28, 30, 31, 37, 39, 41, 49, 53, 57, 62, 63, 65, 66, 69, 72, 74, 75, 78, 93, 106, 109], "add_subplot": 72, "addison": 98, "addit": [8, 13, 22, 24, 27, 40, 81, 93], "addpath": 12, "address": [14, 15, 17, 18, 21, 25, 26, 38, 52, 66, 72, 79, 84, 85, 93], "addunlock": 39, "adjust": [6, 100], "admin": [21, 54, 62, 65, 84, 89], "administr": [15, 22, 54, 66, 89], "admnistr": 27, "adrienn": 74, "advanc": [17, 20, 22, 72, 98, 108], "advant": 41, "advantag": [17, 66, 81, 93], "adversari": 3, "advnonfatalerr": 17, "ae": 86, "aercap": 17, "af": 6, "affair": 81, "affect": [74, 93], "affili": 20, "affinetransform_double_2_2": 41, "affinetransform_double_3_3": 41, "afi": 74, "afp": [25, 26, 55], "afraid": 6, "after": [1, 10, 12, 13, 15, 24, 25, 27, 30, 40, 46, 52, 54, 66, 74, 84, 93, 99, 109], "afterward": [20, 24], "ag": 24, "again": [15, 20, 27, 34, 39, 66], "agenda": 1, "agent": [101, 106], "agil": [22, 106], "agnost": [24, 74], "ago": 30, "agreement": [3, 22], "ahead": 20, "ahuja": 9, "ahunts": 97, "ai": [3, 81, 109], "aiff": 66, "aim": 38, "air": [96, 104], "airdrop": 66, "aj": [6, 9], "ajnr": [9, 109], "akyel": 22, "al": [6, 33, 74, 108], "alcool": 1, "aldina": 98, "aldrich": [98, 106], "aleator": 3, "alexandru": [27, 74, 75, 78], "alexandrufoia": [17, 27], "algorithm": [4, 22, 24, 38, 40, 72, 93], "alia": [17, 25, 38, 86], "alizadeh": 9, "all": [1, 10, 12, 13, 15, 17, 20, 24, 27, 30, 31, 38, 39, 41, 50, 53, 54, 58, 62, 66, 69, 70, 71, 83, 86, 87, 89, 90, 93, 101, 109], "allan": 74, "alloc": [13, 17], "allow": [15, 17, 20, 22, 24, 27, 28, 38, 40, 47, 49, 53, 54, 61, 63, 66, 69, 70, 77, 84, 93, 96, 99], "alois": 22, "alon": 54, "along": [27, 38, 40, 50, 74], "alonso": [22, 27], "alphanumer": [24, 38], "alreadi": [10, 13, 15, 17, 22, 24, 27, 38, 66, 74, 78, 93], "also": [10, 13, 14, 15, 17, 20, 22, 24, 26, 27, 31, 38, 39, 43, 49, 54, 61, 66, 69, 70, 75, 81, 93, 97, 100, 109], "alsop": 6, "alt": [25, 34, 57, 66], "alter": 93, "altern": [30, 31, 38, 41, 66, 93], "although": [10, 55], "altium": 107, "alwai": [10, 39, 55, 89, 93], "am": [9, 93], "amal": [21, 22], "amazon": 98, "amazonaw": 27, "amd": 15, "amd64": 17, "america": 20, "american": [98, 109], "amir": 22, "among": 27, "amount": [17, 20, 26, 74, 108], "amphenol": 104, "amphith\u00e9\u00e2tr": 1, "amri": 106, "an": [1, 3, 9, 10, 13, 17, 20, 22, 24, 25, 26, 28, 30, 31, 34, 38, 39, 40, 41, 44, 46, 50, 53, 54, 55, 63, 66, 71, 74, 75, 77, 78, 79, 81, 84, 88, 89, 94, 97, 98, 99, 101, 108, 109], "analyi": 20, "analys": 22, "analyseur": 22, "analysi": [4, 22, 24, 41, 45, 81, 94, 109], "analyz": [44, 66, 93, 106], "analyzehead": 43, "anat": [24, 39], "anatom": [24, 47], "anchor376728": 98, "andjela": 22, "andreann": 74, "android": 84, "andr\u00e9ann": 22, "angl": 74, "anglai": 22, "anglophon": 108, "ani": [0, 1, 4, 10, 14, 17, 20, 26, 27, 30, 34, 38, 39, 43, 54, 55, 66, 69, 78, 81, 84, 87, 93, 98, 101, 109], "anim": 77, "anima_data": 42, "annal": 109, "annex": [17, 24, 26, 27, 29, 58, 91], "annoi": [55, 69], "annot": [15, 27, 66], "announc": 13, "anonym": [3, 101], "anonymous_ident": 101, "anoth": [15, 24, 27, 30, 39, 53, 69, 78, 79, 81, 109], "anova": 22, "ansi": 73, "ansibl": 15, "answer": [6, 10, 41, 66], "ant": [13, 15, 86], "antena": 40, "antenn": 22, "antenna": [74, 109], "anteriorli": 74, "anticip": 10, "antigen": 78, "antsbin": 41, "antspath": 13, "antsr": 41, "antsuselandmarkimagestogetaffinetransform": 41, "antsuselandmarkimagestogetbsplinedisplacementfield": 41, "anyconnect": 15, "anymor": [18, 83], "anyon": 30, "anyth": [13, 27, 39, 69, 84, 96, 102, 109], "anytim": 39, "anywai": 93, "ap": 30, "ap229997": 3, "apache2": 61, "apart": 96, "apertur": 109, "api": 93, "app": [6, 13, 15, 62, 66, 69, 86], "appar": 24, "appear": [15, 27, 38, 39, 69, 71], "append": [24, 70], "appl": [1, 66, 69, 70, 83, 85], "appledoubl": 55, "applescript": 66, "appleshowallfil": 66, "appli": [20, 22, 24, 40, 41, 50, 66, 74, 93, 99, 108], "applianc": 62, "applic": [3, 6, 15, 17, 19, 22, 37, 53, 62, 69, 70, 74, 77, 83, 86, 93, 95, 108], "appliqu\u00e9": 22, "appoint": 97, "apprentissag": 22, "approach": [3, 10, 38, 72, 93], "approch": 22, "appropri": [10, 17, 19, 93, 94], "approv": [19, 22], "approxim": 3, "apr": [9, 17, 20], "april": 20, "apt": [15, 17, 34, 37, 38, 39, 53, 58, 61, 62], "ar": [0, 1, 10, 13, 15, 17, 20, 22, 23, 24, 25, 26, 27, 28, 30, 34, 39, 40, 41, 49, 50, 53, 54, 55, 62, 65, 66, 69, 70, 72, 74, 75, 77, 78, 79, 81, 84, 85, 89, 90, 91, 92, 93, 94, 97, 98, 99, 101, 106], "aramend\u00eda": 6, "arb": 17, "arbel": 22, "arbitrari": [27, 93], "arbour": 108, "arbselect": 17, "arch": 39, "architectur": [3, 69], "archiv": [26, 30, 37, 70], "area": [50, 74, 93], "arf1681": 104, "arfx1905": 104, "arg": [31, 83], "argument": [13, 30, 31, 41, 62, 66, 70], "arial": 71, "arlocarreon": 38, "around": [66, 99], "arrai": [6, 72, 74], "arrang": 74, "arriv": 95, "arrow": 30, "art": [3, 6, 38, 41, 73], "articl": [8, 10, 22, 66, 93, 100, 103], "artif": 22, "artifici": [22, 109], "artificiel": 22, "arxiv": 3, "ascii": 73, "ask": [6, 10, 12, 15, 19, 20, 22, 27, 38, 66, 70, 75, 78, 81, 94, 100, 108, 109], "askubuntu": 30, "asl": 58, "asp": [98, 99, 108], "aspect": [10, 15], "aspm": 17, "aspm_l1": 17, "aspmoptcomp": 17, "aspx": 104, "assemblag": 20, "assembli": 20, "assep": [92, 99], "assess": [6, 9], "assign": [13, 22, 62, 90], "assimil": 3, "assist": [27, 39, 97], "associ": [0, 15, 24, 99, 109], "assum": [27, 34, 38, 41], "assumpt": 74, "assur": 70, "asymmetri": 41, "asymptomat": 24, "atext": 66, "athen": 20, "atla": [24, 74], "atlas": [3, 24], "atlassian": 38, "atom": [56, 101], "atomicopscap": 17, "atomicopsctl": 17, "atrium": 1, "atroph": 74, "atrophi": 74, "attach": [15, 27, 30, 98], "attempt": 39, "attend": [20, 22, 78], "attent": [3, 93, 97], "attnbtn": 17, "attnind": 17, "attribut": 39, "au": [22, 98], "aucun": 20, "audio": [17, 66], "augment": [3, 74], "august": 108, "aurora": 98, "australia": 20, "austria": 109, "autbwint": 17, "auth": [3, 101], "auth_alg": 101, "authent": [15, 27, 71, 84], "authgroup": 15, "author": [3, 19, 24, 27, 38, 69, 74, 81, 93, 109], "authoris": 78, "auto": [15, 39, 71, 86, 100], "autof": 38, "autom": [3, 4, 9, 38, 83, 93], "automat": [3, 16, 17, 20, 24, 38, 74, 77, 93], "automatis\u00e9": 22, "automn": 10, "autoopen": 57, "autoseq": 3, "autwiddi": 17, "aux": [22, 30], "auxcurr": 17, "auxpwr": 17, "av": 97, "avail": [1, 4, 6, 10, 13, 15, 16, 17, 24, 26, 27, 53, 54, 69, 70, 71, 75, 84, 85, 93, 95, 107], "avansp": 69, "avec": 1, "averag": [3, 74], "avi": 66, "avoid": [20, 24, 26, 27, 30, 66, 69, 93], "avt": 13, "avx2": 17, "aw": [27, 39], "awai": 66, "awar": [28, 55], "awesom": [32, 66], "awesome_study_manuscript_r0": 109, "awesome_study_manuscript_r1": 109, "awesome_study_responses_to_review": 109, "awesome_study_reviewer_suggest": 109, "awg": 98, "aws_access_key_id": 27, "aws_secret_access_kei": 27, "ax": [24, 71, 72], "ax_t1w": 24, "axi": 71, "axial": [41, 50], "axon": [24, 74], "axondeepseg": [1, 19, 46, 74, 93], "azp": 30, "b": [1, 17, 20, 27, 38, 40, 41, 62, 66, 71, 86, 97, 109], "b0": 74, "b000": 17, "b0000000": 17, "b0089ryn5i": 98, "b1": 74, "b1000000": 17, "b1080000": 17, "b4": 17, "b5vj": 27, "baa493": 18, "back": [10, 15, 17, 25, 26, 34, 66], "backend": [39, 72], "backend_agg": 72, "background": [6, 20, 53, 74], "backpropag": 3, "backup": 66, "backward": [3, 38, 93], "bad": 38, "baddllp": 17, "badtlp": 17, "baehr": 66, "bahsrc": 13, "ball": 43, "ballpark": 109, "band": 20, "bandwidthtest": 34, "banerje": 22, "bank": 20, "bant": 108, "banting_eng": 108, "bar": [17, 38, 66, 69], "barcelona": 20, "barrier": 43, "base": [3, 4, 6, 9, 10, 20, 22, 24, 31, 41, 62, 74, 86, 93, 99], "basel": 27, "baselin": 93, "basenam": [30, 66], "bash": [12, 13, 15, 27, 29, 31, 34, 53, 62, 65, 94], "bash_profil": [13, 38, 42, 65, 69, 70, 83, 86], "bashrc": [13, 37, 49, 65], "basi": [53, 81], "basic": [6, 24, 27, 38, 43, 56, 70], "batch": [3, 17, 31, 39], "bate": 109, "bavaria": 27, "bayesian": 3, "bazel": 37, "bazelbuild": 37, "bb0": 17, "bc": 20, "bc03sc00i00": 17, "bc03sc02i00": 17, "bc06sc80i00": 17, "bdist_wheel": 72, "beatti": 9, "beaudoin": 22, "becaus": [10, 13, 24, 26, 27, 39, 62, 66, 69, 71, 78, 89, 93, 98, 109], "becom": 20, "bed": 100, "bede251a0f67": 3, "been": [5, 12, 13, 26, 27, 30, 38, 39, 66, 77, 81, 93], "befor": [10, 15, 20, 24, 27, 38, 40, 55, 66, 69, 70, 84, 94, 97, 99, 100, 108], "beforehand": 10, "begin": [13, 72], "beginn": [3, 36], "behalf": 84, "behaviour": 39, "behind": [10, 15, 27, 71], "being": [15, 17, 27, 38, 74, 81], "below": [10, 15, 17, 20, 24, 28, 31, 38, 39, 53, 54, 58, 66, 75, 83, 93], "ben": 3, "benchmark": 3, "benefit": [17, 40, 90], "benjamin": [22, 74], "bennani": [21, 22], "bento": 1, "bep25": 24, "berlin": 20, "bernard": [1, 22], "bernhard": 66, "bernoullirbm": 36, "best": [0, 3, 10, 15, 20, 27, 54, 74, 109], "bet": [31, 74], "beta": 93, "better": [10, 24, 27, 38, 74, 93], "betterpost": 20, "betti": 15, "between": [3, 10, 13, 17, 22, 24, 26, 27, 62, 66, 69, 74, 77, 93, 109], "beyond": 81, "bia": [3, 74], "bias": 28, "biascorr": 40, "biblio": 89, "bibliographi": [8, 109], "bic": 78, "bid": 27, "bidsvers": 24, "big": [43, 109], "big_dataset": 13, "bigemptyfil": 62, "bigger": [1, 13], "bin": [12, 13, 15, 17, 27, 30, 31, 34, 37, 41, 42, 49, 53, 58, 65, 66, 69, 72, 77, 83, 86, 106], "binari": [17, 24, 26, 41, 65, 69, 70, 93], "bind": 17, "binomi": 24, "bio": 22, "biobank": [27, 39], "biobas": 98, "bioimag": 109, "biol": 6, "biolog": 22, "biologi": 109, "biomark": 9, "biomed": [3, 10, 20, 21, 75, 109], "biomedicin": 109, "biomicrosyst\u00e8m": 22, "biom\u00e9dic": 22, "biom\u00e9dical": 22, "biom\u00e9dicaux": 22, "biophotoniqu": 22, "birdcag": 6, "bire": [17, 86, 109], "birth": 39, "bit": [10, 17, 22, 50, 66, 99], "bitbucket": 38, "bittorr": 39, "biz": 73, "bj": 6, "black": 31, "blacklist": 34, "blake2b160": 39, "blake2b224": 39, "blake2b256": 39, "blake2b384": 39, "blake2b512": 39, "blake2bp512": 39, "blake2s160": 39, "blake2s224": 39, "blake2s256": 39, "blake2sp224": 39, "blake2sp256": 39, "blank": 38, "blob": 3, "bloch": 6, "block": [30, 39, 66, 93], "blog": 38, "blogspot": [20, 66, 69], "bloomfilt": 39, "blostein": 22, "blue": [31, 66, 69], "blueprint": 53, "bluetooth": 101, "blurri": 20, "bmc": [9, 40], "bmcwiki": 40, "bmde": 22, "bmde501": 22, "bmde503": 22, "bmi": 74, "bnc": [77, 98, 104], "board": [20, 66, 93], "bodi": [20, 74], "bolar": 6, "bold": [38, 74], "bone": 74, "book": [3, 6, 7, 8, 10, 20, 38, 39, 72, 91, 109], "bool": 66, "boolean": 66, "bordeaux": 24, "border": 74, "borg": 39, "borrow": 93, "boston": 74, "both": [17, 20, 22, 24, 34, 50, 66, 93], "bottl": 98, "bottom": [1, 20, 47, 65, 66, 93, 106], "boudoux": 22, "boudreau": 27, "bound": [15, 66], "boundari": [41, 74], "boundarypointsonli": 41, "bours": 108, "box": 50, "box_nam": 61, "bp": 24, "bracket": [24, 74], "brain": [3, 22, 24, 44, 45, 71, 74, 100, 109], "brainhack": 22, "brainhackmtl": 22, "brainsight": 73, "brainvisa": 72, "branch": [31, 39, 86], "branch_nam": 38, "branch_prefix": 31, "branch_you_are_reus": 27, "brand": 19, "brandonb927": 66, "break": [15, 38, 93, 101], "breakspear": 109, "bresnahan": 9, "brett": 38, "brew": [15, 39, 58], "brianav": 41, "brianlinklett": 62, "briare": 13, "bridg": 4, "bright": 66, "bring": [27, 39, 61, 100, 106], "brisban": 20, "broad": 3, "broken": 21, "brown": 31, "brows": 87, "browser": [1, 17, 26, 49, 52, 54, 66, 109], "bruce": 74, "bsfd": 108, "bspline": 41, "bsplinesyn": 41, "bu": 17, "buchmann": 22, "budget": [10, 17, 20, 99], "bug": [1, 26, 27, 38, 66, 93], "buggi": 73, "bui": 96, "build": [1, 13, 34, 37, 39, 42, 43, 56, 72, 74, 102], "build_ants_sct": 41, "build_document": 69, "build_exampl": 69, "build_pip_packag": 37, "build_shared_lib": 69, "build_templ": 13, "build_test": 69, "builder": [6, 53], "buildtemplateparallel": 13, "built": [4, 69, 70], "buld": 37, "bulk": 27, "bup": 39, "bureaux": 99, "busi": [10, 97, 98], "busmast": 17, "button": [14, 20, 38, 66], "bval": 24, "bvalu": 74, "bvec": [24, 43], "bw": 50, "bwint": 17, "bwmgmt": 17, "bwnot": 17, "by_group": [12, 79], "bypass": 74, "byte": 17, "bzdok": 22, "bzip2": 53, "c": [1, 9, 13, 17, 20, 22, 27, 30, 37, 38, 41, 46, 52, 62, 66, 69, 70, 109], "c0000000": 17, "c1": [17, 71], "c1c": 17, "c2": [71, 74], "c3": [66, 71], "c3d": [40, 41, 50], "c4": [71, 74], "c5": 71, "c6": [71, 74], "c7": 71, "ca": [1, 5, 12, 13, 14, 15, 16, 17, 20, 21, 22, 25, 26, 39, 40, 66, 69, 73, 75, 77, 78, 79, 81, 84, 85, 86, 88, 92, 96, 97, 98, 99, 100, 101, 104, 108], "ca_cert": 101, "cabrini": 97, "cach": [17, 30, 54, 66], "cad": 59, "caffein": 66, "caf\u00e9t\u00e9ria": 1, "cal": 75, "calcul": [15, 66, 74], "calculquebec": 13, "calendar": [10, 15, 17, 78, 91], "calendri": 1, "calibr": [3, 106], "call": [22, 27, 35, 38, 66, 70, 75, 84, 97, 109], "callaghan": 6, "caloz": 74, "camelcas": 24, "campbel": 74, "campu": [15, 26, 27, 80, 84], "campus": 81, "camtasia": 66, "can": [0, 1, 7, 8, 10, 12, 13, 14, 15, 17, 20, 22, 24, 26, 27, 28, 30, 31, 34, 35, 38, 39, 40, 41, 43, 49, 53, 54, 55, 61, 62, 65, 66, 69, 70, 72, 74, 75, 77, 78, 81, 84, 85, 86, 89, 90, 93, 96, 97, 100, 101, 106, 109], "canada": [11, 20, 22, 96, 99, 108, 109], "canadian": [99, 108, 109], "canal": 24, "cancel": [18, 38, 78, 93], "candid": 22, "candor": 98, "candorind": 98, "cannot": [17, 27, 38, 41], "canopi": 72, "cap": 17, "capabl": [17, 38, 93], "capacit\u00e9": 1, "capit": 38, "capitan": 66, "captur": 24, "caq": 99, "car": 74, "card": [20, 21, 34, 81, 101], "cardiac": [3, 74], "cardiologi": 97, "care": [24, 43, 97], "career": 28, "carlo": [3, 43], "carr": 98, "cart": 104, "cartridg": 18, "case": [10, 15, 17, 27, 30, 38, 39, 41, 54, 55, 69, 79, 93, 99], "cash": [20, 75], "cask": 15, "cassett": 78, "cat": [15, 17, 27, 30, 34, 39], "catalog": 98, "categor": 24, "categori": [93, 96, 98], "caus": [24, 38, 55, 71, 74, 93], "caviti": 24, "cc": [10, 17, 21, 41], "ccdb": 13, "ccmake": 69, "ccmp": 101, "cd": [12, 13, 27, 30, 37, 38, 39, 53, 62, 72, 101], "cdeep3m": 4, "cdr": 66, "cdrom": 62, "ce": [10, 24, 86], "cedar": 86, "cell": 24, "cemsk": 17, "center": [41, 73, 97, 109], "cento": [39, 53, 83], "centr": [97, 109], "central": [1, 27], "cer": 101, "ceram": 98, "cerebrospin": 24, "cereza": 6, "cert": 101, "certain": [26, 93], "certif": [15, 84, 101], "certificat": 99, "cervic": 24, "cest": 74, "cesta": 17, "cevdet": 22, "cfe": 6, "cfg1": 17, "cgi": [77, 106], "cgsession": 66, "ch04": 62, "chah\u00e9": 22, "chain": 15, "chair": 109, "chais": 1, "challeng": [3, 10], "chanc": 10, "chandar": 22, "chang": [10, 15, 19, 20, 24, 26, 27, 34, 39, 41, 47, 50, 52, 55, 57, 62, 69, 70, 74, 81, 83, 100], "changelog": 93, "channel": [17, 19, 27, 77, 81, 87], "channel_setup_fwd_listener_tcpip": 17, "chappel": 7, "chapter": 3, "char": 17, "charact": [31, 38, 93], "character": [24, 109], "charg": [38, 78], "charlei": [22, 74], "charp": 17, "cheap": 98, "cheaper": 66, "cheat": [38, 71, 72], "cheatsheet": [30, 31], "check": [1, 6, 14, 15, 17, 20, 26, 27, 31, 34, 50, 53, 66, 72, 74, 75, 79, 81, 86, 93, 96, 97, 100], "checkjob": 13, "checkout": [27, 39], "chem": 6, "chem3": 98, "chemical_html": 98, "cheriet": 22, "chest": 74, "children": 74, "china": 20, "chmod": [13, 15, 26, 30, 34, 39, 55, 66], "choic": [20, 54], "choix": 20, "choos": [15, 20, 24, 27, 28, 40, 43, 70, 93], "chose": [15, 69], "chosen": [10, 26], "chown": [30, 55], "chri": 22, "christensen": 6, "christin": 22, "christoph": 22, "chrome": [15, 109], "chu": 109, "chum": [20, 97], "ci": 17, "cic": 99, "cif": [26, 65], "cihr": 108, "circuit": [22, 74, 98], "circuiteri": 20, "cis522": 3, "cisco": 15, "citat": 109, "cite": 93, "citi": 20, "claim": [20, 78, 81], "clang": 69, "clang_cxx_librari": 70, "clarif": 10, "clariti": [24, 93], "class": [3, 69, 70, 93], "classic": 22, "classif": [3, 4, 74], "classifi": [4, 96], "classitk_1_1n4biasfieldcorrectionimagefilt": 40, "clbin": 30, "clean": [12, 15, 24, 25, 26, 27, 53, 56, 66, 93, 100, 109], "clear": [10, 24, 30, 61, 98], "clearli": 93, "cli": [26, 30], "click": [0, 1, 5, 15, 26, 38, 47, 50, 52, 62, 69, 70, 83, 85, 93], "clicolor": 86, "client": [15, 20, 30, 39, 53, 74, 84, 85], "clientsopt": 53, "clinic": [3, 6, 9, 97, 108], "cliniqu": 97, "cliniqueenrout": 97, "clip": [19, 66], "clockpm": 17, "clone": [17, 27, 30, 37, 52, 53], "close": [10, 18, 30, 50, 66, 93, 106], "closest": 97, "cloud": [4, 41], "clsc": 97, "clumeq": 13, "cluster": [1, 13, 38, 74], "cluster_fold": 15, "cm": [72, 77, 98, 106, 109], "cmake": [13, 69, 86], "cmake_c_compil": 69, "cmake_cxx_compil": 69, "cmake_cxx_flag": 69, "cmake_install_prefix": 69, "cmake_osx_architectur": 69, "cmake_osx_deployment_target": 69, "cmake_osx_sysroot": 69, "cmakecach": 69, "cmap": 72, "cmd": [15, 25, 26, 50, 66, 109], "cmder": 15, "cmpltabrt": 17, "cmpltto": 17, "cnc": 102, "co": [20, 66, 73, 74, 98, 108, 109], "coauthor": 109, "coax": 98, "coaxial": 98, "cocoa": 69, "cocoa_vtk": 69, "code": [3, 14, 15, 20, 22, 27, 38, 41, 50, 66, 73, 81, 86, 105], "codebas": 93, "codeblock": 69, "coeur": 97, "coffe": 21, "cognit": 28, "cohen": [3, 9, 22, 109], "coher": 10, "coil": 102, "col1": 31, "col2": 31, "col3": 31, "col4": 31, "col5": 31, "colder": 98, "cole_parmer_narrow_mouth_hdpe_bottle_2_l_64_oz_1_pk": 98, "coleparm": 98, "colinpurrington": 20, "collabor": [20, 24, 27, 28, 109], "collaps": [41, 93], "colleagu": 26, "collect": [4, 69], "colleg": 3, "collin": 22, "color": 86, "colorbar": 72, "colorsync": 66, "coloss": 13, "colour": [20, 30, 86, 93], "coltran": 15, "columbia": [6, 109], "column": [24, 66, 86, 93], "column_comma": 86, "column_semicol": 86, "column_tab": 86, "com": [3, 14, 15, 17, 20, 24, 27, 30, 34, 37, 38, 41, 52, 53, 56, 58, 61, 62, 66, 69, 73, 74, 86, 89, 92, 97, 98, 99, 100, 103, 104, 106, 108, 109], "combin": [4, 24, 30, 39, 66, 74, 86], "combo": 66, "come": [28, 81], "comm": 24, "comma": [17, 86], "command": [12, 13, 17, 27, 30, 38, 39, 40, 41, 43, 52, 53, 54, 57, 58, 62, 66, 69, 70, 72, 86, 93], "commclk": 17, "comment": [15, 20, 38, 57, 86, 89, 93], "commit": [24, 28, 30, 39, 53, 86], "commit_id": 38, "commit_numb": 38, "commit_xx": 38, "committe": [10, 20], "commmand": 57, "common": [13, 17, 24, 37, 38, 66], "common_runtim": 17, "commonli": 46, "commun": [20, 22, 24, 28, 39, 84, 87, 109], "comp": 22, "compact": 62, "compani": 98, "companion": 24, "compar": [4, 39, 73, 74], "comparison": 74, "compat": [17, 27, 39, 77, 93], "compens": [74, 75], "competit": 108, "compil": [13, 17, 37, 41, 69, 70], "complaint": 69, "complet": [3, 10, 17, 22, 34, 38, 39, 41, 69, 74, 75, 81], "complex": [3, 27, 41, 93], "complianc": [17, 24], "complianceso": 17, "compliant": 24, "complic": [20, 30], "compon": [41, 109], "composit": 22, "comprehens": [3, 24, 30, 45], "compress": [12, 24, 66, 74], "compression_label": 24, "compressor": 104, "comput": [1, 3, 17, 19, 26, 27, 34, 41, 55, 61, 62, 66, 69, 74, 80, 90, 109], "computationnel": 22, "computecanada": [13, 27, 39, 86], "computeoffset": 41, "computer": 109, "concept": 109, "concern": 88, "concis": [38, 93], "conda": [17, 39, 46, 58, 65, 86], "condit": [3, 34], "condo": 96, "conduct": 106, "cone": 3, "conf": [27, 30, 34, 101], "confer": [1, 21, 26, 89, 108], "config": [15, 27, 37, 38, 42, 52, 61, 93], "config_neuropoli": 15, "configur": [15, 17, 27, 30, 34, 37, 39, 42, 61, 65, 69, 77, 82, 100, 101], "confirm": [1, 10, 39], "confus": [24, 38], "connect": [12, 14, 16, 26, 30, 53, 63, 71, 72, 74, 81, 84, 97, 101, 109], "connectom": [38, 72], "connector": 77, "consciou": 28, "consensu": 6, "consid": [10, 15, 20, 41], "consist": [3, 10, 24, 38], "consol": [6, 75], "consortium": 6, "constraint": 3, "construct": 47, "consul": 99, "consulat": 108, "consult": [15, 28, 80, 81, 97, 98, 108], "consum": 22, "contact": [10, 15, 17, 22, 24, 25, 27, 74, 81, 91, 92, 99, 108, 109], "contactez": 97, "contain": [10, 17, 20, 24, 26, 27, 39, 69, 70, 88, 90, 101], "container_id": 53, "content": [10, 15, 27, 30, 38, 39, 62, 66, 69, 86, 106, 109], "contest": 108, "context": [24, 38, 74, 93], "continu": [10, 30, 39, 62, 84], "contrari": 40, "contrast": [24, 74], "contrib": 3, "contribut": [41, 93], "contributor": 93, "control": [17, 24, 27, 28, 38, 41, 66, 74, 100], "controlmast": 15, "controlpath": 15, "controlpersist": 15, "contus": 9, "convei": 10, "conveni": [24, 66], "convent": [27, 93], "convers": [15, 24, 41, 56, 70], "convert": [20, 41, 66, 73, 93], "convolut": [3, 9], "cool": [38, 66, 73, 77], "cooper": 17, "coordin": [10, 41, 71], "coordonne": 81, "copi": [7, 12, 27, 38, 39, 41, 52, 70, 71, 89, 93, 98, 109], "copper": [98, 106], "cor": 24, "cord": [20, 24, 46, 93, 94, 108], "core": [12, 13, 15, 16, 17, 24, 38, 69, 93], "coreservic": [66, 78], "coretemp": 17, "corner": [38, 66], "corpor": [17, 109], "correct": [13, 38, 69, 74], "correctli": [34, 69, 93], "correl": [9, 22, 74], "correrr": 17, "correspond": [17, 24, 27, 39, 93, 98, 109], "cost": 20, "could": [15, 17, 22, 24, 38, 39, 62, 81, 97], "couleur": 20, "council": 109, "count": [4, 17, 30, 39], "countri": [99, 101], "coupl": [50, 74, 77], "cour": 22, "cours": [3, 6, 54, 55, 81, 94], "coursera": 38, "coursesoff": 22, "courtesi": 75, "courtoi": 109, "courvil": 22, "cov": 74, "cover": [6, 18, 39, 93], "cover_letter_r0": 109, "covid": 78, "cp": [12, 30, 37, 53], "cp27": 37, "cpp": 70, "cpu": [1, 13, 17, 37], "cpu_feature_guard": 17, "cp\u00e9": 22, "cq": 13, "crack": 87, "craig": 109, "craigslist": 96, "crash": [66, 93], "crawl": 24, "crc": 109, "creat": [1, 14, 15, 17, 24, 26, 27, 28, 30, 34, 39, 46, 50, 53, 55, 57, 58, 61, 63, 65, 69, 72, 73, 74, 75, 83, 84, 86, 89, 90, 93, 109], "creation": [6, 30, 55, 109], "credenti": [15, 16, 26, 27, 72, 75, 79, 97, 100, 101], "credit": [20, 22], "creer51": [15, 107], "creer52": [15, 107], "creer53": 15, "crepuq": 22, "crisp": 20, "crit": 17, "criteria": [19, 97], "critic": [10, 17, 24], "criugm": [11, 79, 109], "crop": [24, 93, 109], "cross": [43, 50, 93, 109], "crosslink": 17, "crosslinkr": 17, "crsng": 108, "crucial": [24, 42], "cryptograph": 38, "cryptonit": 39, "crysol": 62, "cs231n": 3, "csa": 74, "csf": [24, 74], "csh": 30, "csm": 24, "cspine": 24, "cspine_t1w": 24, "cspinesag_t1w": 24, "csrutil": 61, "csss": 97, "cst": 15, "csv": 86, "ctime": 30, "ctrl": [17, 27, 30, 34, 66], "ctrl_interfac": 101, "cu": 109, "cu113": 17, "cu17130": 6, "cuda": [13, 17, 54], "cuda11": 17, "cuda_7": 34, "cuda_gpu_executor": 17, "cuda_hom": 37, "cuda_visible_devic": [17, 35], "cudnn": [13, 17, 37, 54], "cudnn5": 54, "cup": 13, "cura": 100, "curat": [23, 27], "curi": 108, "curl": [17, 30, 37, 39, 53], "current": [4, 12, 17, 22, 24, 27, 39, 50, 53, 73, 74], "curriculum": [10, 22], "curt": 9, "curv": [50, 71], "cushion": 74, "cusm": 97, "cuso4": 106, "custom": 86, "cut": [19, 22, 66, 98], "cut_buffer0": 63, "cv": [20, 22, 89], "cx": 66, "cyan": [31, 86], "cyberduck": 66, "cycl": [74, 77], "cylind": [43, 98], "cylinderrad": 43, "cylindersep": 43, "czf": 30, "d": [6, 9, 13, 15, 20, 21, 22, 27, 30, 31, 34, 37, 38, 41, 54, 58, 66, 83, 86, 97, 99], "d0": 17, "d00": 17, "d0000000": 17, "d1": 17, "d2": 17, "d3cold": 17, "d3hot": 17, "daemon": [53, 66], "dai": [6, 10, 15, 20, 30, 31, 66, 75, 97, 99], "daili": [27, 77], "dam": 106, "dame": 97, "damm": 6, "daniel": 22, "danilo": 22, "daphn": 33, "dark": 93, "dash": 24, "dashboard": 27, "dat": 71, "data": [6, 7, 13, 15, 22, 25, 26, 30, 31, 33, 38, 39, 41, 42, 43, 45, 58, 61, 72, 73, 74, 93, 109], "data2d": 72, "data_extrassd_": 17, "data_extrassd_u108545": 17, "data_nvme_": [16, 17], "data_path": 13, "data_process": [25, 65], "data_shar": [25, 65], "databas": [15, 39, 74, 91, 93], "database_mri": 27, "datadim": 43, "datalad": [27, 39], "dataset": [3, 6, 17, 23, 27, 39, 41, 49, 93], "dataset_nam": [24, 27], "datasettyp": 24, "datasynth": 43, "datatyp": 43, "date": [1, 10, 12, 15, 19, 24, 27, 30, 69, 78, 81, 89, 93, 99, 109], "dav": 39, "davi": [15, 86, 97], "david": 22, "db": 9, "dbu": 39, "dbus_session_bus_address": 15, "dc": [6, 74], "dcm": 24, "dcm2nii": [15, 50, 86], "dd": [13, 30, 62, 89], "ddar": 39, "ddr4": 15, "de": [1, 15, 17, 20, 30, 39, 66, 86, 97, 98, 108, 109], "de000000": 17, "deactiv": [13, 72, 86, 101], "dead": 27, "deadlin": [20, 89, 108], "dear": 20, "deb": 37, "debian": [27, 39, 53, 58, 65], "debit": 20, "debug": [66, 70, 72, 93], "debugg": 72, "debut": 70, "dec": [6, 9], "decid": [10, 24, 27, 39, 108], "decis": 3, "decod": [3, 17], "decor": [38, 86], "dedic": 66, "dedupl": 39, "deem": 93, "deep": [4, 9, 17, 22, 29, 81, 108], "deeplearning4j": 36, "deepli": 28, "def": [13, 27], "default": [13, 15, 17, 20, 27, 34, 39, 41, 56, 69, 93, 101], "defend": 10, "defin": [13, 15, 38, 41, 86, 93], "definit": [10, 17, 27, 70], "deform": [74, 98], "defrag": 62, "degen": 24, "delai": [15, 66], "delet": [24, 26, 31, 38, 61, 66, 84], "deliber": 10, "demand": [21, 27, 98, 99, 108], "dementia": 6, "demo": [30, 34, 66, 73], "den": 24, "deni": [38, 39], "denois": 24, "densiti": [24, 98], "depart": [10, 13, 15, 20, 21, 108], "depend": [3, 10, 15, 17, 20, 33, 34, 39, 41, 66, 69, 70, 81, 84, 86, 94, 97], "depsc": 71, "depth": [27, 38], "deriv": [27, 39], "desc": [24, 27], "desc_id": 24, "describ": [10, 13, 15, 24, 27, 38, 58, 93], "descript": [15, 16, 19, 26, 38, 75, 77, 89, 93, 100], "design": [6, 27, 50, 73, 77, 93, 106], "desir": 93, "desk": 15, "desktop": [15, 25, 69, 81, 100], "desktopnotifi": 39, "despit": [24, 27, 39], "destin": [26, 41], "destroi": 61, "detach": [30, 38, 54], "detail": [10, 15, 20, 22, 24, 27, 38, 41, 74, 75, 79, 104], "detect": [3, 4, 17, 74, 77, 104], "detr": 6, "dev": [1, 12, 17, 34, 37, 62, 73, 86, 93, 104], "devcap": 17, "devcap2": 17, "devctl": 17, "devctl2": 17, "devel": 54, "develop": [0, 6, 28, 37, 38, 41, 66, 69, 70, 74, 78, 80, 84], "deviat": [40, 41], "devic": [17, 30, 34, 39, 62, 66, 84], "devicequeri": 34, "devsel": 17, "devsta": 17, "devtalk": 34, "df": [17, 30], "df000000": 17, "df080000": 17, "dge": [20, 21, 75, 92, 98], "dhall": 9, "di": 9, "diagnosi": [3, 24], "diagram": [66, 73], "dialog": 38, "diamet": [43, 77, 98], "dice": 3, "dicom": [12, 50, 66, 73, 78, 79], "did": 66, "didn": 62, "dielectr": 74, "dieu": 97, "diff": [27, 38, 74, 86], "diffeomorph": 41, "differ": [17, 20, 24, 26, 39, 46, 54, 55, 62, 69, 74, 93, 96], "differenti": [3, 24], "difficult": [22, 69, 74], "diffus": [15, 72, 74], "dig": 38, "digikei": 104, "dilat": 3, "dim": 41, "dim3": 31, "dimanch": 97, "dimens": [40, 41, 50, 77, 98], "dimension": 3, "dimitrijev": 22, "dipi": 72, "dir": [24, 101], "direct": [13, 38, 40, 78, 90], "directli": [20, 27, 31, 38, 69, 70, 93], "directori": [12, 15, 26, 30, 34, 38, 39, 53, 54, 66, 69], "dirnam": [30, 66], "disabl": [17, 28, 50, 86, 101], "disable_ipv6": 101, "disadvantag": 66, "disc": 24, "discov": 28, "discoveri": [3, 76], "discrep": 109, "discret": [24, 41], "discrimin": [3, 33], "discs_dlabel": 24, "discuss": [10, 19, 28, 41, 93], "diseas": 24, "disentangl": 3, "disinfect": 79, "disintx": 17, "disk": [12, 13, 17, 30, 38, 39, 62], "disord": 9, "disp": 17, "displai": [17, 27, 30, 31, 38, 56, 63, 71, 72, 74, 93], "dispositif": 22, "disroot": 30, "dissect": 3, "dist": [17, 37, 43, 72], "distanc": [74, 77], "distil": 106, "distinct": 24, "distinguish": 24, "distort": [41, 74], "distrib": 53, "distribut": 72, "distro": [15, 39], "divers": 28, "divis": 104, "divx": 66, "django": [15, 23, 43, 66, 86], "djj": 6, "dkm": 17, "dl": [6, 22], "dlabel": 24, "dlactiv": 17, "dlp": 17, "dnf": 39, "do": [1, 3, 13, 15, 17, 18, 20, 24, 25, 26, 27, 30, 31, 34, 38, 39, 41, 42, 46, 52, 54, 58, 61, 62, 66, 69, 75, 78, 83, 84, 89, 93, 94, 100, 101, 102, 109], "doabl": 27, "doc": [10, 13, 27, 37, 38, 56, 66, 89, 92, 93, 103, 104, 106], "docker": [38, 61], "doctor": 10, "docu": 42, "document": [3, 6, 13, 14, 15, 17, 18, 22, 25, 27, 30, 38, 41, 46, 48, 66, 69, 75, 79, 80, 81, 88, 89, 91, 99, 100, 101, 103, 109], "docx": [66, 83, 109], "doe": [10, 15, 21, 24, 30, 31, 38, 41, 55, 66, 69, 72, 93, 97], "doesn": [3, 13, 18, 27, 39, 69], "doi": 6, "doina": 22, "doku": [40, 66], "domain": [15, 26, 30, 41], "domainadapt": 3, "don": [0, 13, 15, 17, 20, 27, 34, 38, 41, 52, 54, 62, 66, 69, 70, 87, 93, 99, 109], "donat": 109, "done": [1, 10, 19, 20, 27, 30, 31, 38, 41, 46, 54, 62, 72, 87], "donn\u00e9": 22, "doom": 73, "door": [38, 81, 104], "dorval": 97, "dossier": 97, "dot": [13, 20, 57, 74, 109], "dot_clean": 55, "doubl": [1, 15, 27, 38, 62, 74], "down": [15, 30, 61, 66, 78, 93], "downgrad": [17, 66], "download": [12, 13, 14, 15, 17, 19, 20, 34, 37, 39, 42, 49, 54, 61, 62, 63, 66, 69, 71, 74, 84, 101], "download_data": 79, "doxygen": [40, 69], "dp": 98, "dpi": 20, "dpuf": 37, "dq": 30, "dr": [6, 17, 109], "draft": [72, 93], "draftabl": 73, "drag": [14, 25, 66, 70], "draw": [72, 93], "drawback": 93, "drive": [14, 15, 16, 20, 25, 26, 41, 65, 74, 80, 91, 101, 108, 109], "driven": 3, "driver": [17, 34, 54, 104], "drm": 17, "drone": 3, "drop": [14, 15, 25, 30, 66, 70], "dropbox": [15, 39, 100], "dropout": 3, "druschel": 9, "drvier": 37, "drwx": 27, "drwxr": 26, "ds001919": 58, "ds_store": 39, "dscale": 17, "dscl": 70, "dseg": 24, "dsel": 17, "dsi": 17, "dsim": 74, "dsv": 77, "dti": [30, 45, 74], "dtitk": 73, "dtitk_quicklookplugin": 66, "dtype": 17, "du": [15, 17, 22, 30, 39, 85, 97, 99, 109], "dual": 3, "dudler": 38, "due": [10, 38, 71, 98], "duke": [15, 17, 23, 24, 71, 78], "duo": 15, "duong": 9, "duplic": [39, 109], "dupont": [9, 98], "dupr": 38, "durat": 10, "dure": [10, 15, 17, 27, 28, 34, 39, 40, 41, 69, 70, 75, 77, 91, 93, 109], "duti": 77, "dw": 74, "dwi": [24, 74], "dwld": 58, "dx": 6, "dyck": 9, "dyld_library_path": 69, "dylib": [69, 70], "dynam": [40, 50, 62, 69, 74, 93], "dynamicaqua": 98, "dynload": 17, "d\u00e9cari": 15, "e": [12, 13, 15, 19, 20, 21, 22, 24, 25, 26, 27, 30, 31, 34, 38, 39, 41, 50, 52, 53, 55, 57, 62, 66, 69, 74, 81, 84, 86, 89, 93, 97, 106], "e00": 17, "e2ef822c744357a4ed16ec0c885100a3": 17, "e5": 15, "e7": 15, "each": [10, 13, 17, 20, 24, 27, 38, 40, 41, 42, 50, 74, 84, 93, 96, 97, 109], "eap": [84, 101], "earli": [10, 20, 108], "earlier": [10, 99], "earthlink": 98, "eas": 93, "easi": [6, 20, 22], "easier": [38, 50, 66, 69, 93], "easiest": [27, 38], "easili": [66, 89], "easywma": 66, "ec": [6, 22], "ecc": 17, "ecg": 74, "echo": [3, 12, 15, 30, 31, 37, 66, 74, 86], "ecog": 58, "ecol": 99, "ecommerc": 56, "ecrc": 17, "ecrcchkcap": 17, "ecrcchken": 17, "ecrcgencap": 17, "ecrcgenen": 17, "ecs": 22, "ecs7sx9uvtfcj2q9jxcmb3br5hyplotgjmoimt": 27, "ed25519": 27, "edema": 24, "edg": [22, 40], "edit": [0, 1, 17, 19, 20, 27, 28, 30, 38, 62, 63, 65, 66, 69, 72, 75, 80, 86, 101, 109], "editor": [15, 38, 56, 66, 93, 101, 109], "edu": [6, 38, 109], "educ": [6, 14, 28, 84], "eduroam": [82, 101], "edward": 98, "ee": 108, "ee4a6455": 41, "eeg": 58, "eetlpprefix": 17, "ef": 15, "effect": [3, 38, 74, 109], "effici": [3, 17, 26, 75], "eg": [1, 15, 17, 21, 22, 24, 75, 109], "egl": 17, "ei": 66, "eill": 6, "either": [27, 77, 93], "eject": 66, "el": 66, "ele1600a": 22, "ele4501a": 22, "ele6502": 22, "ele6503": 22, "ele6506": 22, "ele8500": 22, "ele8812": 22, "electr": [13, 21, 22], "electron": [4, 20, 109], "electroniqu": 98, "element": [24, 31, 74, 77], "element1": 31, "element2": 31, "element3": 31, "elif": 109, "elig": [20, 97, 99], "elizabeth": 38, "ella": 15, "elm": 79, "els": [15, 17, 31, 38, 39, 69, 84, 86], "elsevi": 109, "elsewher": 39, "em": 15, "emachineshop": 98, "email": [13, 14, 20, 24, 38, 66, 74, 78, 79, 82, 84, 109], "email_adress": 24, "emb": 93, "emerg": 41, "emergencypowerreduct": 17, "emergencypowerreductioninit": 17, "emphasi": 17, "emplac": 70, "employe": [84, 88, 97, 98], "employ\u00e9": 84, "empow": 28, "empti": [17, 24, 27], "empty_cach": 69, "emul": 17, "emuls": 74, "en": [1, 20, 22, 30, 38, 40, 56, 66, 77, 79, 81, 97, 104, 108], "en_ca": [15, 86], "enabl": [17, 24, 27, 30, 66, 70, 109], "encod": [3, 6, 17, 74], "encount": 66, "encourag": [20, 28], "encrypt": 27, "end": [10, 12, 14, 15, 18, 19, 20, 31, 37, 39, 41, 57, 61, 66, 83, 84, 99], "endnot": [15, 66], "endpoint": 17, "endroit": 1, "enforc": 3, "engin": [6, 10, 12, 13, 20, 21, 22, 28, 74, 109], "english": [15, 22, 86, 96], "enhanc": 93, "enlarg": 3, "enough": [10, 41, 101], "enrol": 10, "ensembl": 3, "ensur": [10, 13, 22, 24, 27, 38, 39, 93], "enter": [15, 26, 27, 38, 52, 62, 66, 70, 75, 79, 84, 104], "entercompli": 17, "entermodifiedcompli": 17, "enthough": 72, "entir": [24, 96], "entr": 74, "entri": [15, 75], "entrust_g2_ca": 101, "env": [17, 30, 38, 53, 74], "env_nam": 13, "environ": [6, 12, 15, 17, 25, 30, 34, 35, 46, 66, 69, 70], "environemnt": 17, "envoy": 1, "eo": 15, "eof": [15, 39], "epistem": 3, "epoch": 17, "epoxi": 98, "epyc": 15, "eq": 86, "equalizationcomplet": 17, "equalizationphase1": 17, "equalizationphase2": 17, "equalizationphase3": 17, "equat": 3, "equip": 81, "equiti": 28, "equival": [13, 66], "eras": [38, 39], "erod": 74, "error": [13, 15, 17, 30, 34, 38, 39, 41, 46, 69, 74, 86, 93], "escienc": 73, "essent": 37, "essenti": [10, 24, 27, 34, 109], "est": [1, 15], "establish": [15, 17], "esthet": 73, "estim": [3, 20, 41, 74], "et": [1, 6, 20, 22, 33, 74, 97, 108], "etc": [6, 10, 15, 17, 20, 21, 22, 24, 25, 27, 30, 34, 37, 39, 58, 62, 65, 66, 74, 75, 81, 83, 84, 86, 93, 95, 99, 101, 102, 109], "etcher": 101, "ethanjperez": 3, "ethernet": [21, 74, 101], "ethic": 27, "ethnic": 74, "etudi": [20, 108], "etuvisi": 99, "eu": 6, "eula": 34, "europ": 108, "european": 6, "eva": [22, 27, 78], "evalu": [3, 10, 106], "evan": 38, "even": [10, 15, 26, 30, 39, 54, 66, 69, 75, 101], "event": [1, 15, 66, 75, 89], "ever": [15, 90], "everi": [6, 10, 15, 24, 26, 31, 38, 39, 40], "evernot": 66, "everybodi": 38, "everyon": [10, 14, 27, 30, 38, 39, 90, 109], "everyth": [13, 27, 38, 66, 109], "everytim": 72, "everywher": 30, "evolv": [24, 81], "ex": [28, 62], "exact": 15, "exactli": 27, "examin": [27, 97], "exampl": [1, 3, 10, 12, 13, 15, 17, 20, 22, 26, 27, 28, 30, 31, 38, 39, 52, 53, 54, 55, 56, 61, 66, 71, 72, 78, 89, 93, 99, 109], "excel": [38, 62, 66, 72, 97, 109], "excellemd": 97, "except": [27, 66], "exception": 15, "exchang": [74, 89], "excit": 74, "exclud": 30, "exclus": 93, "exec": [15, 30], "execut": [13, 26, 30, 35, 41, 53, 54, 69, 70], "exempt": [22, 99], "exercis": 22, "exist": [22, 24, 27, 30, 31, 34, 66, 86, 93, 109], "exit": [17, 53, 54, 62, 78], "expand": [39, 69], "expandr": 66, "expans": 17, "expect": [10, 39], "expens": 20, "experi": [1, 10, 17, 38, 75, 77, 89, 91, 93], "experienc": 15, "expert": 24, "expf": 71, "expir": 71, "explain": [3, 6, 10, 27, 39, 93], "explainshel": 30, "explan": [3, 27, 38], "explicitli": 34, "explor": [3, 26, 27, 28, 74], "exponenti": 41, "export": [13, 15, 17, 20, 27, 34, 37, 47, 49, 50, 65, 69, 70, 83, 86, 107, 109], "express": [17, 109], "exp\u00e9rienc": 99, "ext": [30, 41], "ext_anat": 41, "extens": [6, 31, 39, 61, 62, 78, 109], "extern": [17, 21, 24, 39, 66, 93], "extfmt": 17, "extra": [17, 22, 39, 42, 66, 77, 84], "extract": [41, 50, 66], "extrassd": 17, "extrem": [10, 38, 74], "extrud": 100, "extsynch": 17, "exttag": 17, "exttphcomp": 17, "ezyfit": 71, "f": [13, 17, 24, 30, 31, 38, 39, 41, 53, 78, 83, 86], "f000": 17, "f0000000": 17, "f1": [34, 66], "f1000000": 17, "f1080000": 17, "f9000000": 17, "f9tcxbzm1430400825724": 108, "fa000000": 17, "fa080000": 17, "fabric": 107, "face": 77, "facebook": 66, "facil": [79, 81], "factor": [41, 74, 78, 109], "faculti": [0, 108], "facult\u00e9": 108, "fahmiesalleh": 66, "fail": [10, 38, 93, 101], "failur": [78, 93], "fair": 22, "fall": [10, 17, 22], "fals": 38, "familiar": [39, 90, 93, 94], "fan": 17, "fancier": 0, "far": 66, "fashion": 3, "fast": [3, 16, 17, 41, 66, 97], "fastb2b": 17, "faster": [12, 13], "fatal": 38, "fatalerr": 17, "favicon": 73, "fbc1": 17, "fbirn": 106, "fchollet": 32, "fcp": 17, "fdisk": 30, "featur": [4, 17, 30, 38, 56, 66, 69, 74, 93], "feb": [6, 26, 27], "fedora": 39, "fee": [20, 22], "feed": 39, "feedback": 10, "feel": [1, 28, 80, 87], "fehl": 9, "fellow": 80, "fellowship": [89, 108, 109], "femal": [24, 104], "fepegar": 74, "ferguson": [9, 15], "fernandez": 9, "fern\u00e1ndez": 6, "ferri": 22, "fetch": [27, 38, 53], "few": [10, 24, 27, 66, 93, 97], "ff": [27, 86], "fi": [31, 38, 86], "fiberglass": 98, "fibr": 74, "fichier": 30, "field": [6, 22, 40, 46, 48, 71, 74, 78, 79, 106], "fieldprob": 74, "fiever": 97, "fig": [72, 74, 109], "fignum": 72, "figur": [20, 66, 72], "figurecanva": 72, "figurecanvasagg": 72, "fiji": 4, "file": [12, 14, 15, 17, 19, 20, 24, 25, 26, 27, 34, 37, 42, 43, 50, 55, 59, 61, 63, 65, 69, 71, 72, 79, 83, 86, 93, 100, 101, 107, 108, 109], "file_dest": [30, 41], "file_nam": [31, 38], "file_src": [30, 41], "filemanag": [77, 101], "filemod": 38, "filenam": [17, 24, 30, 31, 38, 39], "filesystem": 17, "filetyp": 39, "filezilla": [12, 78], "fill": [10, 14, 15, 20, 22, 24, 31, 75, 81, 85, 99], "film": 56, "film_lay": 3, "filter": 39, "fin": 1, "fin41": 98, "final": [10, 24, 26, 27, 66, 109], "final_data_t2": 13, "financ": 78, "find": [0, 10, 13, 15, 28, 31, 38, 39, 41, 54, 62, 65, 66, 70, 73, 81, 100, 102], "find_mri": 78, "finder": [15, 25, 26], "findsmb": 30, "fine": 26, "finer": 27, "fingerprint": 3, "finish": 15, "fink": 104, "firefox": 66, "firmwar": 17, "first": [15, 17, 19, 20, 22, 24, 27, 31, 39, 41, 58, 61, 66, 78, 79, 89, 93, 108, 109], "firstli": 20, "firstnam": 27, "firstnamelastnam": 27, "fit": [7, 20, 40, 71, 74], "five": [31, 66], "fix": [10, 17, 39, 41, 55, 66, 71, 74, 93], "fixed_imag": 41, "fixedcenterofrotationaffinetransform": 41, "fixedimag": 41, "fixedparamet": 41, "fixedpoint": 41, "fizzylog": 17, "flag": [15, 17, 34, 38, 39, 53, 54, 69], "flake8": 93, "flameshot": 73, "flash": 101, "fleuri": 97, "flight": 20, "flip": 24, "float": 43, "float16": 17, "float32": 17, "float64": 17, "flow": [3, 27, 38], "flreset": 17, "fluid": [3, 24], "fma": 17, "fmap": 24, "fmedian": 40, "fmri": 45, "fmrib": [45, 46, 48, 66], "fmriprep_2": 24, "foam": 74, "fobjc": 69, "focu": [10, 27, 81, 93], "focus": [3, 74, 93], "foia": [27, 75], "fold": 66, "folder": [13, 14, 15, 17, 20, 24, 25, 26, 27, 31, 34, 38, 41, 42, 49, 52, 55, 65, 69, 70, 74, 89, 93, 108], "folder_dest": 30, "folder_nam": 26, "folder_shar": 25, "folder_sourc": 30, "foldernam": 66, "foldershar": 62, "follow": [1, 8, 10, 12, 13, 14, 15, 17, 18, 20, 23, 24, 27, 28, 31, 37, 38, 39, 40, 41, 44, 45, 46, 50, 53, 54, 58, 62, 65, 66, 69, 70, 71, 77, 81, 83, 85, 89, 93, 100, 101, 109], "fomblin": 98, "fond": 109, "fondat": 108, "font": [71, 93], "fontnam": 71, "fontsiz": 71, "fontweed": 66, "food": 20, "foot": 98, "forc": [15, 69, 72], "foreign": [22, 108], "forerunn": 30, "forg": [39, 46], "forget": [42, 109], "form": [10, 20, 22, 26, 27, 53, 75, 81, 99], "formal": [10, 24], "format": [0, 6, 10, 17, 20, 22, 24, 27, 38, 39, 41, 47, 50, 89, 93, 101], "fortun": 38, "forum": [3, 66, 74, 78], "forward": [3, 17, 19, 38, 46, 54, 63, 93], "fossdaili": 30, "found": [7, 8, 10, 15, 17, 20, 24, 27, 31, 40, 41, 55, 66, 81, 86], "foundat": [22, 108, 109], "four": 69, "fourier": 6, "fov": 74, "fr": [14, 17, 22, 42, 97], "fr4": 98, "fragil": 27, "framadrop": 30, "frame": 74, "framework": [3, 4, 6, 54, 66, 74], "franc": [20, 96, 108], "francai": 99, "francoeur": 22, "frank": 22, "fran\u00e7ai": [15, 22], "fran\u00e7ais": 96, "fraser": 28, "free": [1, 3, 15, 20, 58, 59, 62, 66, 80, 81, 87, 98], "freepdfconvert": [66, 73], "freesurf": 15, "freez": [55, 66, 72], "french": [6, 15, 22, 81], "frequenc": [41, 77], "fresh": [34, 39, 69], "freund": 9, "freundcontain": 98, "fri": [17, 27], "fridai": 98, "friendli": [4, 24, 66, 90], "friston": 9, "from": [3, 6, 9, 10, 13, 15, 17, 24, 27, 28, 31, 37, 39, 41, 42, 46, 47, 54, 58, 61, 69, 71, 72, 73, 74, 75, 77, 84, 86, 93, 96, 98, 99, 101, 107, 108, 109], "front": [9, 20, 77], "frontier": 109, "frq": 108, "frqnt": 108, "frsq": 108, "fsl": [15, 41, 46, 48, 86], "fslchfiletyp": 43, "fslconf": [65, 66, 86], "fsldir": [65, 66, 86], "fsley": [24, 83, 86], "fslhd": 31, "fslinstal": 65, "fslmath": [40, 66], "fslview": [15, 65, 83], "fslwiki": 48, "fstab": 65, "ftp": 66, "full": [25, 27, 38, 39, 41, 42, 54, 66, 78, 93], "fulli": [3, 24, 66, 77], "fun": 73, "func": 24, "function": [3, 22, 66, 86, 93, 109], "functor": 74, "fund": [20, 109], "fundament": [3, 22, 94], "fundu": 3, "funni": 66, "further": [30, 93, 99], "furthermor": 70, "fusion": 22, "futur": [22, 24, 109], "fxt8sj831osqfo0": 100, "fywj": 27, "f\u00e9d\u00e9ral": 99, "g": [6, 13, 15, 20, 21, 24, 25, 26, 27, 30, 31, 34, 38, 39, 41, 49, 55, 62, 66, 69, 74, 81, 86, 89, 93, 97, 106], "g10": 98, "g6": 39, "ga102": 17, "ga102gl": 17, "ga343ea76c8": 39, "gadgetron": [6, 74], "gain": 39, "galeri": 1, "gamma": 43, "ganderso": 109, "gang": 38, "gantt": 73, "ganttproject": 73, "garbag": 69, "garcia": 6, "gaspard": 6, "gauss": 41, "gb": [14, 38, 74, 86], "gbm2330": 22, "gbm3100": 74, "gbm6103a": 22, "gbm6330": 22, "gbm6700": 22, "gbm6953ee": 22, "gbm8378": 22, "gbm8605": 22, "gbm8770": 22, "gbm8802": 22, "gbm8871": 22, "gc": [38, 69, 86, 99, 108], "gcal": 75, "gcc": [13, 17, 53], "gcc_preprocessor_definit": 70, "gcr": 54, "gcrypt": 39, "gd": [38, 86], "gdoc": 109, "gdrive": 83, "ge_password": 15, "ge_usernam": 15, "geda": 104, "geek": 66, "geeksforgeek": 72, "geforc": 17, "gender": 28, "gener": [1, 3, 10, 14, 15, 17, 19, 24, 26, 27, 36, 50, 69, 73, 74, 84, 90, 93, 97], "generatedbi": 24, "geneva": 20, "genie06": 15, "genpath": 12, "geometri": 15, "gerbv": 104, "germani": 20, "gervai": 22, "gestion": 15, "get": [3, 10, 12, 14, 15, 17, 20, 26, 30, 31, 34, 37, 38, 39, 53, 58, 62, 63, 65, 66, 74, 79, 80, 83, 86, 91, 94, 97, 99, 101, 109], "getent": 62, "getkap": 73, "getopt": 31, "ghc": 39, "ghost": 74, "gi": 17, "gid": [39, 62], "gif": [66, 73], "gifmak": 72, "gist": [17, 30, 66, 73], "git": [13, 15, 17, 24, 26, 27, 29, 30, 31, 37, 52, 53, 58, 61, 66, 72, 86, 91, 93, 94], "gitattribut": 39, "gitconfig": 38, "gitea": 27, "github": [0, 3, 6, 13, 15, 17, 21, 24, 27, 28, 29, 30, 32, 37, 53, 56, 58, 62, 66, 69, 72, 73, 79, 80, 90, 91, 94, 109], "gitignor": [38, 39], "gitk": 38, "gitolit": 27, "gitolite3": 27, "gitolot": 27, "gitref": 38, "give": [13, 15, 20, 30, 38, 39, 62, 70, 74, 78, 97, 99], "given": [3, 10, 20, 22, 31, 38, 41, 53, 75, 79, 81, 98, 109], "gl": [17, 38, 65, 66, 79, 86], "glacier": 39, "glasgow": 20, "glass": [66, 98], "glaucoma": 3, "glg": [38, 86], "glia": 74, "glitch": 39, "global": [38, 49, 72], "glocker": 3, "gluta": 98, "gm": 24, "gmail": [17, 27, 66, 92, 99, 109], "gmf": 97, "gmfqe": 97, "gnu": [17, 69], "go": [0, 1, 10, 12, 14, 15, 17, 18, 20, 26, 34, 38, 41, 52, 55, 62, 66, 69, 70, 84, 93, 97, 100, 104, 109], "goal": 93, "goer": 20, "golai": 6, "gone": 66, "goo": [65, 79], "good": [1, 10, 20, 22, 24, 27, 38, 56, 66, 69, 73, 93, 97, 98, 109], "goodi": 66, "goodresearch": 73, "googl": [1, 3, 15, 19, 20, 74, 79, 80, 91, 93, 97, 100, 104, 108], "googleapi": 37, "googlebrain": 74, "googlecalendar": 1, "gorvett": 27, "got": [38, 87], "goussard": 22, "gouv": [97, 108], "gov": [48, 74, 106, 109], "gp": [38, 86, 97], "gpg": 37, "gpu": [1, 13, 34, 37, 54, 109], "gpu_devic": 17, "grad": [10, 22], "grade": [10, 89], "gradient": 3, "gradientstep": 41, "gradual": 27, "graduat": [10, 22, 81, 94, 108], "gradut": 22, "graham": [13, 86], "grai": [3, 24, 72], "grain": 27, "grame": 26, "grames_password": 15, "grames_usernam": [12, 15, 26], "grammarli": 109, "granada": 20, "grand": 20, "grant": [20, 27, 81, 84], "graph": [38, 86], "graphic": [22, 33, 34, 37, 69, 109], "graphiscan": 20, "grapho": 22, "graphviz": 66, "grappelli": 15, "grayscal": 47, "great": [22, 30, 38, 73, 109], "greec": 20, "green": [31, 50], "grei": [15, 31], "grep": [15, 17, 27, 30, 31, 86], "grid": [12, 71], "griffintown": 97, "gro": [9, 22], "ground": 3, "group": [6, 13, 20, 27, 28, 62, 70, 79, 93, 101, 108], "groupenam": 62, "groupmembership": 70, "groupnam": 62, "grova": 22, "grsnc": 108, "gruber": 6, "gsp": 17, "gt": 17, "gtx": [15, 17], "gtx1080": 37, "guai": 27, "guenther": 27, "guerin": 74, "guest": 84, "gui": [4, 34, 53, 66, 69], "guid": [3, 6, 10, 20, 29, 36, 38, 56, 69, 70, 73, 77, 81, 100], "guidebook": 24, "guidelin": [10, 93], "guillimin": [13, 86], "guitton": 22, "guo": 6, "guzman": 109, "gv": 39, "gxfxcxdxbxegedabagac": 86, "gz": [12, 13, 24, 27, 30, 31, 37, 39, 40, 41, 69], "g\u00e9nie": 22, "g\u00e9n\u00e9ral": 97, "g\u00e9n\u00e9raux": 22, "g\u00fcnther": 6, "h": [6, 15, 17, 27, 30, 39, 41, 70, 86, 109], "h2v": 97, "h_ax": 71, "h_fig": 71, "ha": [1, 4, 5, 10, 12, 13, 14, 15, 17, 26, 27, 28, 31, 38, 39, 40, 41, 46, 54, 62, 66, 77, 81, 93, 99, 102, 109], "hack": 69, "had": [17, 66, 97], "half": 62, "hand": [10, 38, 66], "handbook": 39, "handbrak": 66, "handl": 39, "handler": 66, "hang": [27, 52], "hansen": 108, "happen": [15, 17, 38, 40], "hard": [16, 22, 37, 38, 39, 62, 66], "hardwar": [6, 81], "harvard": 38, "hash": [38, 101], "hashicorp": 61, "hassl": 20, "have": [10, 13, 14, 15, 17, 19, 20, 24, 26, 27, 30, 34, 38, 39, 41, 43, 46, 50, 52, 54, 55, 61, 62, 66, 69, 70, 74, 75, 79, 81, 93, 97, 98, 99, 101, 104, 109], "haven": [38, 55, 66], "havsteen": 6, "hawaii": 20, "hayashi": 9, "hc": [24, 30], "hcifst": 15, "hd": 66, "hdf5matrix": 17, "hdiutil": 66, "hdpe": 98, "hdr": 43, "hdrlogcap": 17, "he": [12, 54], "head": [6, 27, 38, 39, 76, 77, 86, 109], "header": [38, 69, 86, 98], "header_search_path": 70, "headerlog": 17, "health": [97, 109], "healthi": [24, 74], "heart": 109, "heatertimeout": 101, "heather": 109, "heavi": 22, "heed": 101, "height": 20, "held": [19, 22], "helen": 74, "helio": 13, "hello": 27, "help": [15, 17, 20, 24, 27, 30, 38, 66, 93], "hemi": 93, "henc": [10, 74], "hendriks": 6, "her": 78, "here": [0, 1, 5, 8, 10, 13, 15, 17, 20, 23, 24, 25, 26, 27, 28, 31, 38, 39, 41, 43, 46, 52, 54, 61, 62, 66, 69, 71, 75, 76, 77, 78, 79, 81, 84, 85, 89, 91, 93, 97, 98, 101, 103, 106, 108, 109], "hereaft": 69, "hernandez": 6, "hesit": [41, 66, 93], "hetero": 3, "hex": 43, "hh": [13, 30], "hidden": [3, 27, 28, 55, 69], "hierarchi": 24, "high": [3, 6, 13, 17, 20, 38, 41, 43, 77, 93, 98], "higher": [15, 24, 39, 41, 49, 98], "highest": 20, "highli": [10, 108], "him": 109, "hint": 66, "hippocamp": 3, "hiren": 27, "histologi": 26, "histori": [27, 38], "hit": [30, 66], "hofmann": 38, "hola": [31, 66], "hold": [30, 66, 71], "holidai": 1, "holist": 3, "home": [12, 13, 15, 17, 26, 27, 30, 43, 55, 62, 66, 77, 83, 86, 99, 100], "homefold": 42, "homepag": [97, 98], "homo": 24, "homogen": 40, "hong": 20, "honolulu": 20, "hook": [26, 39], "hope": 66, "horo": 66, "hospit": 97, "hospitali": 97, "host": [13, 15, 17, 25, 27, 30, 46, 53, 54, 62, 109], "host_nam": 30, "hostnam": [15, 16, 30, 38, 100], "hot": [17, 74], "hour": [10, 22, 30, 38, 97], "hous": [20, 77, 96, 106], "how": [3, 6, 10, 13, 15, 17, 20, 24, 27, 28, 30, 39, 41, 52, 53, 54, 58, 66, 69, 71, 74, 78, 79, 81, 85, 91, 93, 97, 100, 109], "howev": [10, 12, 15, 38, 39, 41, 43, 54, 74, 84, 99], "howtologin": 78, "hp": 18, "hpc": [13, 86], "hr": 10, "ht": 38, "ht203129": 66, "ht5856": 66, "htm": 98, "html": [20, 31, 36, 37, 38, 40, 41, 48, 56, 62, 65, 66, 69, 73, 74, 93, 97, 98, 109], "htmlcomponentfactori": 66, "htmlrender": 66, "htop": 17, "http": [1, 3, 6, 13, 14, 15, 17, 20, 22, 24, 27, 30, 31, 32, 34, 36, 37, 38, 39, 40, 41, 42, 48, 52, 53, 54, 56, 58, 59, 61, 62, 65, 66, 69, 72, 73, 74, 77, 78, 79, 81, 85, 86, 88, 89, 92, 97, 98, 99, 100, 101, 103, 104, 106, 107, 108, 109], "httpalso": 39, "htwtoc": 109, "hub": [53, 54], "huge": [41, 66], "huie": 9, "human": [3, 22, 24, 30, 44, 109], "hup": 30, "hwil2tmaw": 27, "hxx": 41, "hyperlink": 66, "hyperpolar": 6, "hypothes": 10, "hypothet": 93, "hz": 71, "h\u00f4pital": 97, "h\u00f4tel": 97, "i": [0, 1, 3, 4, 6, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 24, 25, 26, 27, 28, 30, 31, 34, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 49, 50, 53, 54, 55, 58, 61, 62, 63, 66, 69, 70, 71, 72, 74, 75, 77, 78, 79, 80, 81, 86, 87, 89, 93, 97, 98, 99, 100, 101, 106, 108, 109], "i386": 69, "i7": 15, "ianlunn": 66, "iat": 28, "ic": 74, "icloud": 15, "icm": 74, "icml": 20, "icmmri": 77, "icon": [0, 15, 50], "icv": 74, "id": [13, 15, 17, 24, 38, 70, 84, 98], "id_": 27, "id_ed25519": 27, "id_rsa": [27, 38, 52], "idea": [10, 15, 27, 93], "ideal": [24, 93, 109], "ident": [50, 101], "identif": 24, "identifi": [13, 15, 19, 27, 38, 74, 93], "idp91444064": 62, "ie": 98, "ieee": [3, 109], "ieeexplor": 3, "ieeg": 58, "ift6135": 22, "ift6145": 22, "ift6167": 22, "ift6268": 22, "ift6269": 22, "ift6760": 22, "ig": 59, "ih": 27, "ii": [3, 20, 22], "iii": 22, "ilana": 78, "ilastik": 4, "illustr": 66, "im1": 31, "im2": 31, "im3": 31, "imac": 81, "imag": [1, 4, 6, 9, 20, 24, 27, 29, 33, 41, 44, 45, 46, 47, 50, 54, 62, 69, 70, 72, 77, 81, 93, 101, 106, 109], "image_captur": 66, "image_id": 53, "imagecaptureextension2": 66, "imagedimens": 41, "imagej": 74, "imagemagick": 66, "imageregistr": 41, "imageri": 22, "imagesedit": 30, "imagin": 93, "imaging_processing_softwar": 40, "imap": 85, "img": [43, 101], "immedi": [27, 66], "impact": [3, 41, 74, 109], "impair": 9, "imper": 38, "imperi": 3, "imperialcollege4slsh2feb2018": 74, "implement": [6, 40, 74, 93], "impli": 93, "implic": 10, "implicitli": 27, "import": [1, 10, 17, 20, 22, 24, 38, 50, 59, 69, 72, 75, 78, 93, 101, 109], "imposs": 39, "impregn": 77, "impress": 20, "improv": [0, 3, 24, 40, 93], "inam": 30, "inch": [20, 77, 98], "incl": 108, "includ": [8, 10, 14, 15, 17, 24, 26, 27, 38, 39, 41, 69, 70, 79, 80, 81, 89, 93, 109], "inclus": [13, 28, 69, 93], "incom": 85, "incompat": 93, "incorpor": 109, "increas": [3, 20], "increment": 93, "incur": 20, "inde": 71, "independ": 74, "index": [24, 39, 61, 66, 73, 99], "indic": [1, 15, 19, 24, 31, 47, 74, 78, 87, 93, 109], "individu": 72, "individual_plots_subj": 71, "induc": 74, "industri": [98, 108], "inf1010": 22, "inf6141": 22, "inf6953h": 22, "inf8215": 22, "inf8225": 22, "inf8245": 22, "inf8250": 22, "infer": 3, "inflamm": 74, "influenc": 41, "info": [1, 13, 20, 27, 31, 38, 39, 66, 69, 74, 79, 81, 83, 85, 96, 97], "infograph": 28, "inform": [0, 13, 15, 17, 20, 24, 38, 39, 40, 41, 54, 78, 80, 81, 84, 88, 93, 99, 100], "informatiqu": 21, "infrastructur": [12, 17, 80, 81, 90], "inf\u00e9rieur": 1, "ingenieur": 22, "inhomogen": 74, "init": [38, 39, 61], "initi": [6, 10, 22, 38, 39, 43, 86, 93], "initramf": 34, "injuri": [24, 108], "ink": 18, "inkscap": 66, "inlin": 61, "inner": 74, "innocu": 39, "innov": [6, 109], "inod": 39, "inotifi": 39, "inprogress": 17, "input": [26, 66, 83, 93], "input_imag": 40, "inputfilenam": 50, "inria": 42, "insan": 6, "insensit": 30, "insert": [62, 63, 77, 109], "insid": [15, 24, 26, 30, 39, 50, 53, 54, 63, 66, 74, 89, 93, 109], "insight": 41, "insighttoolkit": 69, "inspect": [17, 24, 27], "inspector": 66, "inspf": 71, "inspir": [69, 71, 74, 109], "instal": [13, 17, 27, 30, 54, 56, 65, 66, 70, 71, 74, 84, 86, 93, 101, 104, 109], "install_java": 37, "install_sct": 53, "installing_vtk_on_mac_os_x": 69, "instead": [10, 13, 17, 20, 24, 26, 27, 38, 39, 52, 66, 69, 70, 74, 81, 83, 93, 101], "institut": [13, 20, 22, 24, 71, 84, 97, 108, 109], "instruct": [8, 14, 15, 17, 24, 38, 39, 44, 45, 46, 58, 62, 71, 77, 78, 84, 93, 100, 108, 109], "instructions_3dprint": 100, "int": 17, "integ": [13, 24], "integr": [30, 46, 58, 66, 72, 74], "intel": 15, "intellig": [22, 109], "intend": [0, 10, 39], "intens": [15, 22, 41], "intent": 93, "inter": [22, 99], "interac": 75, "interact": [4, 13, 21, 38, 53, 61, 72, 73], "interest": [10, 22, 38, 89], "interfac": [13, 66, 100], "intern": [1, 6, 15, 18, 28, 39, 53, 69, 71, 75, 77, 79, 80, 81, 84, 91, 93, 99, 100, 101], "internation": 81, "international": 99, "internet": [3, 6, 13, 27, 66, 84, 85, 98], "internship": [89, 93, 94], "interpol": [24, 41, 50], "interpret": 41, "interrupt": [17, 39], "interupt": 15, "intervertebr": 24, "intramedullari": 3, "intranet": [20, 66], "introduc": [66, 93], "introduct": [3, 6, 7, 10, 22, 38, 56], "intuit": 6, "intx": 17, "inum": 39, "invari": 74, "invers": [38, 74], "investig": [9, 27, 74], "invit": [10, 75, 99], "inviti": 75, "invit\u00e9": 84, "invoic": [88, 98], "involv": [10, 22, 89, 93, 109], "inxquartz": 53, "io": [6, 13, 24, 30, 32, 37, 39, 50, 54, 56, 62, 69, 73, 84], "ioff": 72, "ion": 72, "ip": [18, 30, 38], "ip_address": 30, "ip_serv": 65, "iphon": 66, "ipv6": 101, "ipython": 72, "irina": 22, "irmf": 22, "irq": 17, "irrelev": 10, "is_avail": 17, "isa": 17, "ismrm": 6, "isn": [13, 27, 70], "iso": 62, "isocent": 77, "isol": [54, 93], "isrt": 108, "issu": [15, 21, 24, 27, 28, 38, 39, 55, 66, 90], "issue_numb": 93, "ital": 74, "itali": 20, "item": [15, 53, 66], "iter": [41, 108], "itk": 40, "itk_build_all_modul": 69, "itk_has_stltr1_tr1_type_trait": 69, "itk_has_stltr1_type_trait": 69, "itk_use_64bits_id": 69, "itkbuild": 69, "itkdebug": 69, "itkmatrixoffsettransformbas": 41, "itksnap": [15, 66], "itksoftwareguid": 41, "itkvtk": 69, "itkvtkglu": 69, "its": [10, 27, 30, 39, 72, 84, 93, 97, 98, 109], "itself": [38, 66, 93, 109], "iv": 22, "ivado": [1, 108, 109], "ivadom": [1, 17, 74, 93], "j": [6, 9, 13, 49, 69, 108], "ja": 6, "jacqu": 22, "jacquelin": 108, "jalbert": 22, "jame": 22, "jammi": 17, "jan": 6, "januari": 41, "jar": 98, "jarrett": 15, "jason": 74, "java": [37, 71], "java8": 37, "jc": 9, "jca": 109, "jcohen": [13, 27, 38, 86, 100], "jdk1": 37, "jean": [15, 22, 97], "jekyllbootstrap": 56, "jekyllrb": 56, "jemri": 6, "jenkinson": 7, "jetbrain": 38, "jeton": 108, "jf": 9, "jfsanto": 17, "jmcglone": 56, "jmlr": [3, 109], "jmri": 109, "jmrui": 6, "job": [10, 17, 39], "jobid": 13, "join": [27, 75, 90], "joint": 3, "joliet": 66, "jonathan": 22, "joplin": [26, 27, 46, 86], "joshua": 27, "journal": [26, 89], "jpeg": 20, "jpg": 66, "jr": 9, "json": [27, 79], "jsp": 98, "juif": 97, "jul": 9, "juli": [20, 38, 74], "julia": 38, "julien": [3, 12, 15, 18, 22, 25, 38, 74, 78, 81, 86, 100, 109], "jun": [17, 26], "junction": 24, "june": 20, "jupyt": [6, 17, 54], "jurajsplayground": 62, "juri": [10, 22], "just": [0, 10, 15, 17, 20, 27, 31, 38, 39, 50, 53, 54, 62, 65, 70, 81, 84, 101, 106, 109], "justin": 109, "jv": 38, "j\u00fclich": 6, "k": [9, 15, 17, 25, 26, 41, 74], "kahoot": 73, "kaleem": 22, "kapton": 98, "karimi": 9, "karo": 27, "karthik": 22, "kb": 66, "ke": 22, "keep": [17, 20, 24, 26, 50, 55, 62, 75, 91, 93, 98, 109], "kei": [18, 24, 25, 26, 27, 37, 39, 52, 66, 109], "kendal": 22, "kept": [24, 27], "kera": [3, 17, 32], "kernel": [17, 40], "key_mgmt": 101, "keyboard": [57, 81], "keychain": [15, 66], "keydir": 27, "keygen": [27, 30, 38, 52], "keynot": [20, 89, 109], "keypress": 63, "kg": 96, "kickstart": 39, "kijjji": 96, "kill": [15, 17, 66], "killal": [30, 66], "kind": [20, 38, 43, 93], "kingdom": 20, "kiri": 22, "kirk": 15, "kirsch": 6, "kit": [15, 74, 77], "kitwar": 41, "kjw0612": 32, "klausschmier": 74, "knee": 3, "kneighborhood": 41, "know": [1, 3, 6, 10, 15, 18, 20, 24, 27, 38, 79, 81, 93, 108], "knowledg": [3, 38], "known": [27, 38, 66, 84, 101, 109], "ko": 17, "koller": 33, "kong": 20, "korea": 20, "kotter": 9, "kousu": 27, "kqj3jimatpwzowc1a": 79, "kumar": [9, 33], "kyritsi": 9, "l": [1, 6, 9, 13, 17, 18, 22, 26, 27, 30, 31, 41, 81, 86, 97, 106], "l0": 17, "l1": 17, "l1_pm_substat": 17, "l1subcap": 17, "l1subctl1": 17, "l1subctl2": 17, "la": [20, 22, 27, 86, 108], "lab": [1, 7, 10, 13, 19, 20, 21, 27, 28, 38, 46, 74, 80, 90, 94, 95, 108, 109], "label": [3, 33, 39, 41, 66, 109], "laboratoir": 22, "lacadi": 97, "lachin": 97, "lacost": 22, "lafferti": 33, "lahiri": 6, "lakeshor": 97, "lamarr": 1, "lancet": 9, "lane": 17, "laneerrstat": 17, "lang": [15, 22, 86], "languag": [3, 29, 70], "lapierr": 22, "laptop": [15, 27, 30, 81, 84], "larg": [26, 28, 30, 39, 41, 74, 93], "largefil": 39, "larger": [41, 50], "larmor": 77, "larri": 73, "lasagn": 32, "lasal": 97, "laserjet": 18, "lassond": 1, "last": [10, 20, 22, 27, 31, 38, 41, 42, 78, 79], "lastnam": 27, "late": 20, "latenc": 17, "later": [10, 20, 30, 54, 99, 109], "latest": [10, 13, 20, 27, 30, 42, 53, 54, 69, 93, 94, 101], "latex": 109, "lath": 86, "launch": [12, 15, 17, 30, 53, 70], "launchag": 66, "launchctl": 66, "launcher": 93, "launchservic": 66, "laurin": 22, "laval": 13, "law": 22, "layer": [3, 17, 74, 98], "layov": 20, "ld_library_path": [34, 37], "ldp": 31, "ldpe": 98, "le": [1, 30, 96, 108], "lead": [41, 90], "learn": [4, 9, 10, 17, 20, 29, 38, 61, 72, 81, 108], "least": [10, 17, 20, 22, 24, 27, 43, 66, 74, 101, 108], "leav": [39, 54, 66], "lectur": [3, 72], "leener": 22, "left": [1, 13, 38, 50, 54, 66], "legaci": 17, "legend": [24, 71], "lemai": 22, "lempc2xt7jucmuwdaqvwovmnz7ur3dgxqetptlmpmxpgd2hk9": 27, "len": 17, "length": [74, 77, 93, 98], "leopard": 66, "leppert": 78, "lesion": [6, 24, 74], "lesion_seg": 24, "less": [6, 30, 41, 108], "lesson": 56, "let": [10, 15, 18, 30, 35, 38, 39, 93, 108], "letter": [50, 99], "level": [3, 4, 17, 24, 26, 38, 50, 71, 72, 74, 97], "levesqu": 22, "levin": 22, "lf": 39, "lh": [9, 86], "li": 22, "lib": [13, 17, 34, 37, 41, 69, 70], "lib64": [34, 37], "libc": [69, 70], "libcubla": 17, "libcublaslt": 17, "libcuda": 17, "libcudart": 17, "libcudnn": 17, "libcufft": 17, "libcurand": 17, "libcusolv": 17, "libcuspars": 17, "libgl": 53, "libicudata": 17, "libitkcommon": 70, "libitkdoubl": 70, "libitkioimagebas": 70, "libitkionifti": 70, "libitkniftiio": 70, "libitkoptim": 70, "libitksi": 70, "libitkstatist": 70, "libitkv3p": 70, "libitkv3p_lsqr": 70, "libitkvcl": 70, "libitkvnl": 70, "libitkvnl_algo": 70, "libitkvnlinstanti": 70, "libmng": 65, "libnvidia": 17, "libpng12": 65, "librari": [7, 17, 41, 45, 46, 66, 70], "library_search_path": 70, "libstdc": [69, 70], "licenc": 107, "licens": [15, 17, 69, 71, 109], "license_laboslics": 71, "lid": 66, "life": [66, 108, 109], "lift": 66, "light": [4, 31, 93], "lightdm": 34, "lightn": 3, "lightweight": 20, "lign": 22, "like": [1, 15, 17, 20, 24, 27, 28, 30, 38, 39, 41, 54, 66, 69, 81, 87, 97, 101], "lima": 20, "limimt": 71, "limit": [3, 93, 98], "line": [17, 34, 38, 39, 41, 50, 53, 62, 63, 65, 66, 69, 70, 72, 73, 86, 93, 101], "linear": [38, 74, 77], "linewidth": 71, "linjieyangsc": 3, "link": [3, 13, 14, 15, 17, 19, 22, 24, 29, 37, 38, 39, 66, 69, 75, 79, 88, 92, 93, 97, 101, 109], "linkequalizationrequest": 17, "linux": [16, 17, 26, 30, 37, 38, 39, 41, 58, 62, 84], "linux_x86_64": 37, "linuxconfig": 31, "liom2": 77, "lion": [31, 66], "lipton": 6, "list": [1, 6, 8, 10, 17, 21, 22, 23, 24, 28, 30, 31, 37, 54, 56, 66, 70, 75, 78, 79, 81, 89, 92, 96, 97, 99, 105], "listen": 17, "literatur": [10, 28], "littl": 38, "live": [55, 66, 95], "liver": 3, "ll": [13, 27, 54, 62, 65, 66, 70, 86, 101], "llactrep": 17, "llvm": [69, 70], "lm": 6, "lnkcap": 17, "lnkcap2": 17, "lnkctl": 17, "lnkctl2": 17, "lnkctl3": 17, "lnkequintrrupten": 17, "lnksta": 17, "lnksta2": 17, "load": [12, 13, 17, 27, 30, 34, 39, 47, 50, 74, 100], "loader": 93, "local": [17, 26, 27, 34, 37, 39, 41, 58, 61, 62, 65, 66, 69, 70, 71, 72, 78, 83, 86], "localhost": [17, 54], "locat": [12, 15, 18, 24, 26, 27, 30, 61, 66, 69, 75, 79, 98], "lock": [27, 109], "log": [15, 19, 24, 27, 30, 38, 39, 78, 81, 84, 86, 91, 109], "log_file_name_": 31, "logdir": 17, "logedit": 31, "logfil": 31, "logic": [24, 93], "login": [13, 15, 26, 34, 70, 78, 109], "login_desktop": 78, "logo": [20, 73, 85], "logout": 15, "london": [3, 20], "long": [15, 20, 26, 30, 31, 38, 39, 69, 74, 97], "longer": [13, 24, 27, 38, 69, 78], "longnam": 24, "longu": 97, "look": [10, 15, 17, 20, 27, 38, 39, 41, 66, 74, 79, 84, 86], "lookup": 30, "loop": 34, "lorsqu": 1, "lose": 39, "lost": [40, 66], "lot": [10, 20, 22, 39, 41, 43, 61], "louer": 96, "loui": 22, "low": [74, 93], "lpevc": 17, "lr": 27, "lsblk": 30, "lscolor": 86, "lso": 109, "lsof": 17, "lspci": 17, "lsregist": 66, "lt": [65, 86], "ltr": 17, "ltr1": 17, "lu": 6, "luc": 97, "luessi": 72, "lufi": 30, "luggag": 96, "luna": 6, "lunch": 21, "lung": 74, "m": [6, 9, 13, 17, 24, 27, 31, 38, 39, 41, 55, 65, 66, 74, 77, 86, 106, 108], "m3500": 1, "m4a": 66, "m5517": 1, "m5519": 1, "ma": 6, "mabort": 17, "mac": [15, 26, 30, 55, 62, 71], "machin": [3, 4, 6, 10, 15, 17, 20, 24, 25, 27, 39, 61, 66, 71, 74, 102, 106, 109], "macintosh": [6, 66], "macmillan": 56, "maco": [15, 20, 26, 38, 39, 50, 58, 62, 63, 73, 84, 86, 101], "macosforg": 66, "macosx": 69, "macosx10": 69, "macresearch": 69, "macro": 57, "mactheripp": 66, "macworld": 66, "made": [27, 38, 69, 74, 77], "madhuranthakam": 6, "mag": 24, "magic": 30, "magicmim": 39, "magmedix": 74, "magn": 6, "magnet": [3, 6, 9, 24, 74, 109], "mai": [10, 17, 20, 24, 26, 30, 38, 50, 52, 55, 61, 62, 69, 70, 84, 93], "mail": 92, "mailplan": 66, "mailx": 30, "main": [1, 13, 17, 20, 77, 81], "main_pag": 106, "maintain": [25, 27, 93], "maisonneuv": 97, "major": [17, 81, 93], "make": [10, 13, 15, 17, 20, 24, 25, 27, 30, 34, 38, 39, 42, 49, 55, 56, 62, 65, 69, 70, 84, 86, 87, 92, 93, 97, 98, 101, 106, 108, 109], "makefil": 69, "makehybrid": 66, "makesign": 20, "maketecheasi": 62, "male": [24, 104], "malftlp": 17, "mamba": 39, "mambaforg": 39, "mammoth": 13, "manag": [15, 17, 19, 22, 27, 38, 41, 52, 53, 66, 91, 93], "mandatori": [15, 24, 55, 81], "mandel": 98, "mangl": 101, "mani": [27, 30, 38, 39, 54, 66, 96], "manipul": [3, 31], "manner": 93, "manual": [15, 24, 39, 41, 66, 69, 70, 77, 85, 93, 100], "manufactur": 102, "manuscript": [89, 109], "manuscript_r0": 109, "map": [24, 26, 74, 79, 97, 109], "mar": [9, 26], "march": 84, "margin": 17, "mari": [74, 97, 108], "mark": [7, 38, 39], "markdown": [24, 93, 109], "marker": [41, 78], "markup": 66, "marsali": 15, "martin": [22, 72], "martino": [74, 106], "mart\u00edn": 6, "mask": [24, 41, 47, 74], "mask_destin": 41, "mask_sourc": 41, "maskabl": 17, "master": [3, 22, 27, 37, 38, 66, 93], "mat": [20, 98], "match": [3, 15, 30, 31, 39], "mate": 1, "materi": [28, 41, 94, 98, 109], "math": 22, "mathieu": [27, 91], "mathwork": [66, 71], "matlab": [6, 12, 15, 25, 72, 86], "matlab_r2020a": 86, "matlab_shar": 25, "matlplotlib": 72, "matricul": 98, "matrix": 41, "matshow": 72, "matt": 20, "matter": [3, 21, 24], "matthew": 38, "maverick": [30, 66], "max": [26, 27, 77, 108], "maxdepth": 30, "maximum": 77, "maxiter": 41, "maxpayload": 17, "maxreadreq": 17, "maxtimeslot": 17, "mayavi": 72, "mayb": [38, 69, 74, 93], "mayonnais": 74, "mb": [17, 30], "mc": 41, "mccoi": 9, "mcgill": [13, 20, 86], "mcmaster": 98, "md": [93, 97], "md5": [30, 39], "md5e": 39, "md5sum": 30, "mdnsrespond": 30, "mdph": 22, "mdutil": 66, "me": 66, "mean": [10, 19, 20, 24, 38, 41, 69, 71, 74, 93], "meaning": [38, 93], "meant": 93, "meantim": 73, "measur": [3, 17, 74, 109], "mecalab": 98, "mechan": [3, 9, 77], "med": [6, 40], "medecinegeneral": 97, "media": 62, "medic": [1, 6, 20, 27, 41, 47, 74, 95, 106, 109], "medicin": [6, 78, 109], "medicocentremontroy": 97, "mediti": 109, "medium": [3, 77, 93], "meet": [6, 19, 28], "meg": 58, "megabyt": 13, "melba": 109, "melbourn": 20, "mem": [13, 17], "member": [0, 6, 10, 13, 20, 27, 28, 75, 81], "memori": [13, 17, 50, 62], "memwinv": 17, "menisci": 3, "mental": 38, "mentimet": 73, "mention": [24, 93, 98, 109], "menu": [18, 26, 34, 38, 50, 66, 70, 84], "menu_nvidia_smi_submenu_gpu0_rtx_a6000": 17, "menu_nvidia_smi_submenu_gpu1_rtx_a6000": 17, "menu_nvidia_smi_submenu_gpu2_rtx_a6000": 17, "menu_nvidia_smi_submenu_gpu3_rtx_a6000": 17, "menumet": 66, "merg": [27, 58, 63, 93], "merit": 108, "mesa": 53, "mesh": 43, "meshlab": 66, "messag": [14, 15, 17, 24, 26, 27, 30, 66, 69, 81, 86], "mesur": 22, "meta": [24, 63], "metadata": [24, 27], "metamateri": 74, "metasurfac": 74, "method": [3, 10, 13, 17, 22, 38, 74, 109], "metr": 98, "metric": [17, 93], "metrictyp": 41, "mf": 39, "mg": 9, "mgh": 38, "mgs4u": 98, "mhz": [77, 106], "mi": 41, "michael": [6, 7, 109], "micro": 22, "microscopi": [4, 23, 24, 27, 93, 109], "microscropi": 93, "microsecond": 77, "microsoft": [11, 15, 109], "microsoft365": 14, "microwav": 109, "midl": 20, "mig": 17, "might": [10, 15, 17, 20, 26, 38, 61, 66, 74, 109], "migrat": 27, "miguel": 20, "mil": 98, "mila": [3, 13, 20, 109], "mildcompress": 24, "mileston": [10, 93], "milk": 74, "minc": 40, "mindepth": 30, "mingu": 15, "mini": 15, "minicircuit": 98, "miniconda": [72, 86], "miniconda3": [17, 58, 86], "miniforg": 39, "minim": [56, 77], "minima": 56, "minor": 93, "minuit": 1, "minus_on": 20, "minut": [1, 10, 20, 62, 78], "misc": 102, "miscellan": 50, "mismatch": 24, "miss": [1, 24, 27, 50, 66, 80], "mistak": [38, 56], "mit": 3, "mitac": 108, "mitk": 66, "mitkworkbench": 15, "mix": [69, 106], "mixmatch": 3, "mjp": 6, "mkdir": [15, 17, 26, 27, 38, 39, 65, 101], "ml": [17, 22], "mlexplain": 3, "mlwidget": 66, "mm": [13, 30, 77, 89], "mni": [40, 75], "mni305": 24, "mnt": [15, 17, 26, 62, 65], "moab": 13, "mobil": 15, "mod_unload": 17, "modal": [3, 24, 74, 93], "mode": [20, 30, 53, 54, 66, 70, 72, 93, 109], "model": [3, 9, 15, 16, 17, 22, 24, 27, 33, 74, 93, 100], "modern": [6, 98], "modeset": 34, "modif": [20, 30, 38, 109], "modifi": [24, 27, 30, 38, 39, 56, 93, 109], "modifyhd": 62, "modinfo": 17, "modprob": 34, "modul": [12, 17, 36, 39, 66, 93], "modular": [4, 74], "module_itkv3compat": 69, "module_itkvtkglu": 69, "module_nam": 13, "modvers": 17, "moell": 108, "molini": 24, "moment": 72, "mon": 24, "mon001": 24, "monei": 17, "monitor": [15, 27, 66, 81], "monitorcontrol": 66, "monospac": 93, "mont": [3, 43, 97], "monterei": 15, "montesino": 6, "month": [20, 27, 74], "monthli": 27, "montreal": [13, 20, 22, 24, 79, 84, 95, 97, 99, 108, 109], "montr\u00e9al": [97, 109], "mood": 3, "more": [0, 1, 10, 17, 20, 21, 22, 24, 25, 26, 28, 30, 31, 37, 38, 41, 52, 54, 62, 66, 74, 75, 79, 81, 84, 85, 88, 90, 93, 106, 108], "mortim": 97, "most": [22, 30, 38, 41, 66, 69, 81, 109], "mostli": [27, 93, 108], "motion": 74, "motiv": 24, "motor": 9, "motricit\u00e9": 108, "mount": [17, 25, 27, 54, 55, 62, 100], "mountain": [31, 66], "mous": [66, 81], "mov": 66, "move": [5, 9, 12, 15, 27, 30, 38, 41, 74, 95], "movement": [66, 74], "moving_imag": 41, "movingimag": 41, "movingpoint": 41, "mozilla": 101, "mp2": 13, "mp2rage": [24, 27], "mp3": 66, "mp4": [66, 100], "mpi": 13, "mpmri": 74, "mpr": 50, "mr": [3, 22, 78], "mr750": 76, "mrd": 74, "mrhub": 6, "mri": [1, 23, 24, 25, 26, 27, 40, 44, 45, 58, 66, 73, 74, 77, 78, 102, 106], "mri_nu_correct": 40, "mricron": [15, 86], "mriid": 78, "mrilab": 6, "mrm": [6, 109], "mrn": 9, "mrshub": 6, "mrtech": 78, "msc": [6, 22], "mschapv2": 101, "msfhr": 108, "msi": 17, "msub": 13, "mt": [24, 30, 77], "mth3302": 22, "mth6305a": 22, "mth6312": 22, "mtime": 30, "mton_mt": 24, "mtv": 74, "much": [10, 12, 13, 17, 22, 27, 41], "multhdrreccap": 17, "multhdrrecen": 17, "multi": [3, 24, 30, 74, 93], "multiclutch": 66, "multidimension": 41, "multimod": [3, 41], "multipl": [3, 17, 20, 22, 24, 27, 31, 39, 40, 66, 69, 75, 89, 93, 98, 109], "multitask": 3, "munich": 20, "musculoskelet": 9, "must": [10, 13, 17, 22, 24, 27, 39, 43, 50, 66, 70, 71, 79, 98, 99], "mustn": 43, "mutsaert": 6, "mutual": [41, 93], "mv": [27, 30, 38, 66, 101], "mvp": 66, "my": [3, 6, 14, 20, 27, 31, 38, 39, 66, 69, 93], "my_fil": 38, "my_job": [12, 13], "my_project": 72, "my_project_fold": 72, "my_repo": 38, "my_script": 35, "my_sct_script": 13, "my_str": 31, "mycommand": 31, "myelin": 24, "myelin_06_rescan": 12, "myelin_map": 12, "myelopathi": 24, "myfig": 72, "myst": 0, "m\u00e9decin": 22, "m\u00e9dical": 22, "m\u00e9dico": 97, "m\u00e9lani": 74, "m\u00e9thode": 22, "n": [9, 13, 15, 17, 20, 24, 38, 39, 41, 58, 63, 66, 83, 109], "nacl": 106, "nadia": 22, "naga": [15, 22, 74], "name": [13, 15, 17, 20, 26, 27, 30, 31, 39, 42, 46, 50, 62, 66, 69, 70, 71, 75, 78, 79, 81, 85, 89, 93], "name_of_sess": 30, "nameofyourprogram": 70, "namespac": 27, "nano": [65, 86, 101], "nanom\u00e9decin": 22, "narval": 27, "narvid": 9, "naryanan": 22, "nat": 9, "nathan": [24, 27], "nativ": 66, "natur": [33, 93, 109], "navbartemp": 101, "navier": 3, "navig": [69, 70], "nb": [13, 15], "nbbin": 41, "nc": 31, "ncbi": 109, "nd": 104, "ndp": 15, "necess": 26, "necessari": [10, 13, 27, 34, 69, 70, 74, 78, 81, 100], "necessarili": 10, "necessit": 93, "neck": [6, 74], "need": [1, 3, 10, 12, 13, 14, 15, 17, 19, 20, 21, 22, 24, 26, 27, 30, 34, 38, 39, 43, 53, 54, 61, 62, 65, 66, 69, 70, 72, 74, 75, 78, 79, 81, 83, 84, 89, 90, 93, 97, 98, 99, 100, 104, 108, 109], "neg": 17, "negopend": 17, "neighbour": 41, "neilsen": 109, "nerguizian": 22, "nerv": 24, "net": [6, 30, 41, 59, 74, 101], "netdev": 101, "netherland": 73, "netlib": 70, "netlifi": 6, "network": [3, 9, 15, 17, 26, 27, 28, 53, 55, 71, 81, 83, 84, 93, 101, 109], "neur": 22, "neural": [9, 17, 20, 22, 109], "neural_network": 36, "neurip": 20, "neuro": [5, 15, 16, 17, 22, 25, 26, 39, 66, 78, 86], "neuroadiologi": 109, "neuroimag": [6, 9, 20, 22, 24, 30, 39, 46, 94], "neuroinformat": [74, 109], "neurol": 9, "neurologi": 109, "neuromod": 109, "neuronal": 22, "neuropatholog": 74, "neuropoli": [0, 1, 3, 6, 8, 11, 12, 13, 17, 18, 19, 20, 21, 24, 27, 28, 38, 53, 62, 66, 72, 74, 75, 77, 79, 80, 81, 83, 89, 91, 93, 95, 100, 101, 102, 109], "neuropolylab": 109, "neuroradiol": 9, "neuroradiologi": 6, "neurorx": 74, "neurosci": [9, 22, 108, 109], "neurowir": 20, "never": [10, 27, 38], "new": [3, 13, 15, 20, 24, 25, 30, 38, 50, 53, 57, 66, 69, 83, 84, 93, 109], "new_file_nam": 30, "new_nam": 27, "newer": 30, "newli": [15, 27, 95], "newton": 27, "next": [15, 31, 62, 66, 93, 98], "nf": 55, "nguenther": 39, "ni": 1, "nia": 22, "niagara": [13, 86], "nibabel": [7, 48], "nibardo": 74, "nice": [10, 56, 86], "nick": [27, 91], "nicl2": 106, "nifti": [15, 43, 50, 66, 73, 83], "nifti1field": 48, "nifti1fields_pag": 48, "nightli": [25, 26], "nightmar": 55, "nih": [22, 48, 74, 106, 109], "nii": [13, 24, 27, 30, 31, 39, 40, 41, 83, 86], "nikola": [18, 22, 74, 109], "nilearn": [32, 72], "nimag": 43, "nimh": 48, "nind": 106, "nipi": 48, "nipyp": 72, "nishimura": 6, "niso4x6h2o": 106, "nitrc": 106, "nix": 27, "nl": [17, 100], "nlm": 109, "nmr": [6, 38, 109], "nn": [3, 86], "nnu": 3, "node": [13, 17, 34, 49], "noexec": 26, "nofich": 97, "noguerol": 6, "noir": 98, "nois": [74, 77], "nomin": [20, 22], "nomul": 66, "non": [17, 26, 28, 39, 74, 108], "none": [37, 66, 109], "nonfatalerr": 17, "nonlinear": 3, "nonneg": 24, "nonphysicist": 6, "nord": 97, "nori": 9, "normal": [3, 15, 17, 39, 57, 70, 74], "north": 98, "nosnoop": 17, "nosoftrst": 17, "notabl": 6, "note": [1, 3, 10, 12, 15, 17, 20, 22, 24, 27, 30, 34, 38, 41, 54, 63, 66, 72, 73, 75, 78, 86, 93], "notebook": [17, 54], "notepad": 101, "noth": [15, 34, 39, 42], "notic": [10, 27, 34, 98], "notif": [1, 87], "notifi": 93, "notificationcent": 66, "notificationcenterui": 66, "notr": 97, "nou": 97, "nounix": 65, "nouveau": [17, 34], "novemb": 10, "now": [10, 15, 17, 25, 27, 34, 38, 62, 66, 69, 70, 74, 109], "np": 108, "npm": 49, "nr": 30, "nroprprp": 17, "nsc6084": 22, "nserc": 108, "nsnavpanelexpandedstateforsavemod": 66, "nsw": 20, "ntask": 13, "ntlmssp": 65, "null": 86, "nullifi": 62, "num": 86, "num2str": 71, "numa": 17, "number": [13, 15, 17, 26, 27, 31, 38, 39, 41, 71, 86, 93, 109], "numer": [1, 31, 69, 96], "numpi": [37, 71, 72], "num\u00e9riqu": 22, "nvcc": 34, "nvidia": [15, 17, 34, 35, 37, 108, 109], "nvidia_cuda": 34, "nvidia_drm": 17, "nvidiafb": 17, "nvme": [15, 16], "nvreg_devicefilegid": 17, "nvreg_devicefilemod": 17, "nvreg_devicefileuid": 17, "nvreg_dmaremappeermmio": 17, "nvreg_dynamicpowermanag": 17, "nvreg_dynamicpowermanagementvideomemorythreshold": 17, "nvreg_enabledbgbreakpoint": 17, "nvreg_enablegpufirmwar": 17, "nvreg_enablemsi": 17, "nvreg_enablepciegen3": 17, "nvreg_enablepcierelaxedorderingmod": 17, "nvreg_enables0ixpowermanag": 17, "nvreg_enablestreammemop": 17, "nvreg_enableusernumamanag": 17, "nvreg_excludedgpu": 17, "nvreg_gpublacklist": 17, "nvreg_ignoremmiocheck": 17, "nvreg_initializesystemmemoryalloc": 17, "nvreg_kmallocheapmaxs": 17, "nvreg_memorypools": 17, "nvreg_modifydevicefil": 17, "nvreg_nvlinkdis": 17, "nvreg_preservevideomemoryalloc": 17, "nvreg_registerforacpiev": 17, "nvreg_registerpcidriv": 17, "nvreg_registrydword": 17, "nvreg_registrydwordsperdevic": 17, "nvreg_resmandebuglevel": 17, "nvreg_restrictprofilingtoadminus": 17, "nvreg_rmlogonrc": 17, "nvreg_rmmsg": 17, "nvreg_s0ixpowermanagementvideomemorythreshold": 17, "nvreg_tcebypassmod": 17, "nvreg_temporaryfilepath": 17, "nvreg_usepageattributet": 17, "nvreg_vmallocheapmaxs": 17, "nvswitch": 17, "nvswitchblacklist": 17, "nvswitchregdword": 17, "nvtop": 17, "nvverifi": 17, "nybe": 6, "nyu": 6, "o": [13, 15, 16, 17, 24, 26, 27, 29, 30, 31, 34, 39, 40, 41, 50, 62, 66, 70, 93, 100], "o2": 74, "obff": 17, "obj": 66, "object": [3, 4, 10, 27, 37, 38, 39, 43, 66, 72, 77, 106], "objet": 22, "observ": 3, "obsproject": 66, "obtain": [22, 24, 84, 104], "occur": 66, "ocra": 6, "oct": [6, 20], "octob": [69, 108], "octolaps": 101, "octopi": 101, "octoprint": [100, 102], "octoslack": 101, "od": 77, "off": [15, 17, 24, 27, 57, 66, 69, 72, 93], "off_mt": 24, "offer": [22, 39, 96, 97, 98], "offic": [14, 15], "offici": [10, 15, 27, 38, 61, 69, 106], "offlin": 74, "offset": 41, "often": 38, "oftentim": 38, "oh": 30, "oil": [74, 98], "ok": [17, 50], "okel": 6, "old": [25, 27, 109], "older": [38, 39, 66], "olivi": 74, "omc": 41, "omiss": 24, "omit": 38, "omnigraffl": 66, "on_mt": 24, "onboard": [0, 15, 19, 27, 81, 90], "onc": [1, 12, 13, 15, 17, 19, 20, 24, 27, 30, 31, 34, 38, 41, 54, 58, 62, 66, 69, 70, 75, 79, 81, 84, 87, 93], "ond": 22, "one": [10, 13, 15, 17, 20, 24, 26, 27, 30, 34, 38, 39, 41, 43, 52, 53, 54, 58, 63, 66, 70, 74, 78, 93, 109], "oneapi": 17, "onednn": 17, "onelin": [38, 86], "ones": [17, 27, 69, 70, 73], "onli": [6, 10, 12, 13, 14, 20, 22, 24, 25, 26, 27, 30, 35, 38, 39, 40, 54, 58, 62, 63, 66, 70, 73, 89, 93, 108, 109], "onlin": [6, 24, 93], "onto": [15, 17], "oo": 41, "open": [6, 10, 12, 13, 15, 17, 18, 19, 20, 22, 26, 27, 30, 31, 38, 39, 44, 47, 52, 53, 54, 58, 62, 63, 69, 73, 78, 80, 81, 83, 84, 86, 101, 109], "opencl": 17, "openconnect": 15, "opengl": 34, "openneurodataset": 58, "oper": [15, 17, 34, 38, 39, 53, 65, 75, 101], "opera": 66, "opinion": 38, "opportun": 20, "opt": [24, 27, 37], "optic": 109, "optim": [17, 77], "option": [13, 15, 17, 20, 24, 27, 31, 34, 38, 39, 41, 43, 46, 54, 62, 69, 70, 84, 97], "oracl": [37, 61, 62], "oral": 20, "orang": 31, "ord": 78, "order": [1, 13, 15, 20, 27, 30, 53, 54, 61, 62, 66, 74, 77, 78, 84, 109], "ordinari": 3, "org": [3, 6, 22, 30, 31, 32, 36, 38, 40, 41, 49, 56, 58, 61, 62, 65, 66, 69, 72, 73, 74, 92, 101, 104, 106], "organ": [1, 15, 19, 21, 24, 27, 28, 38, 72, 89, 108], "organigram": 66, "orient": [24, 41, 48, 50, 72], "orient\u00e9": 22, "orig": 24, "origin": [3, 10, 20, 24, 27, 38, 40, 41, 93], "ortiz": [22, 27], "osch": 6, "osf": 30, "osirix": [15, 66], "osmium": 98, "osprei": 6, "osx": [26, 30, 41, 46, 53, 55, 56, 66, 71], "osxfus": 15, "other": [6, 13, 14, 15, 17, 19, 20, 21, 22, 23, 24, 27, 28, 39, 41, 53, 54, 66, 69, 70, 74, 75, 78, 82, 84, 85, 93, 109], "otherrepositori": 38, "otherwis": [16, 24, 38, 41, 55], "ottawa": 20, "ou": 99, "ouest": 97, "oui": 74, "oumayma": 74, "ount": 65, "our": [15, 20, 24, 27, 46, 53, 54, 69, 74, 75, 78, 79, 90, 91, 97], "out": [6, 10, 17, 19, 20, 27, 31, 38, 39, 86, 90, 96, 99], "outcom": 93, "outer": [74, 77], "outgo": 85, "outlet": 21, "outlin": [22, 66], "outprefix": 41, "output": [13, 24, 26, 27, 30, 34, 37, 41, 74, 86, 93], "output_imag": 40, "outputfil": 43, "outputfilenam": 50, "outsid": [10, 27, 28, 50, 93], "ouvert": 97, "ouvrir": 97, "over": [17, 20, 26, 38, 70, 77, 81, 101], "overal": [20, 27, 93], "overlap": 43, "overnight": 66, "overrid": [39, 63], "oversight": 90, "overview": [3, 6, 9, 22, 52], "ow": 74, "own": [17, 24, 27, 53, 62, 109], "owner": [27, 55, 66], "ownership": 55, "ox": [48, 66, 74], "oxsa": 6, "oxsatoolbox": 6, "oz": 98, "p": [6, 9, 13, 15, 17, 27, 30, 39, 41, 43, 53, 54, 66, 72, 78, 89, 98], "p0": 17, "p000000": 26, "p100": [15, 17], "p101317": 86, "p123123": 15, "p2": 17, "p2p": 39, "p8": 17, "p_id": 104, "pac": 96, "pacif": 98, "pack": [22, 43, 61], "packag": [15, 17, 37, 44, 46, 47, 61, 66, 93], "pacman": 39, "pad": 74, "page": [0, 5, 10, 15, 20, 21, 24, 28, 38, 41, 54, 56, 66, 70, 81, 93, 98, 109], "pagefault": 17, "pagefit": 57, "pai": [20, 98], "paid": 98, "painfulli": 38, "pair": [22, 39, 41, 66], "pairwis": 101, "pal": 22, "pam50": [24, 74], "pandem": 81, "panel": [38, 98], "paper": [3, 20, 81, 93, 98, 100, 109], "paperpil": 3, "paperpositionmod": 71, "papier": 20, "paquet": 27, "paragraph": [38, 93], "parallel": 6, "param": [38, 41], "paramagnet": 106, "paramat": 41, "paramet": [3, 54, 74, 83], "paranoid": 66, "parc": 97, "parent": 24, "parerr": 17, "pari": [20, 74], "park": 6, "parker": 15, "parkerplast": 98, "parm": 17, "part": [3, 6, 10, 19, 22, 24, 27, 38, 39, 46, 49, 66, 70, 74, 81, 93, 109], "parti": 93, "partial": [3, 74], "partialmatchingiter": 41, "particip": [78, 84, 99], "participant_id": 24, "particular": [15, 93], "particularli": [39, 93], "partir": 22, "partit": [30, 71], "partner": 109, "partnership": [99, 108], "partovi": 22, "parzen": 41, "pascual": 9, "pass": [10, 15, 17, 31, 34, 41, 54, 66, 70, 93], "passif": 22, "passphras": 27, "passwd": 15, "password": [14, 26, 27, 52, 62, 65, 70, 73, 79, 84, 85, 100, 101], "past": [27, 30, 38, 52, 63, 66, 70, 93, 109], "pastebin": 93, "pasternack": 98, "patch": [71, 73, 93], "patel": 27, "patentrybit": 17, "path": [12, 13, 17, 24, 27, 30, 34, 37, 38, 42, 49, 53, 54, 61, 62, 65, 66, 69, 70, 78, 83, 86, 98], "path_dest": 53, "path_output": 41, "path_to_fil": 30, "path_to_file_1": 38, "path_to_file_2": 38, "path_to_model": 17, "path_to_my_repo": 38, "path_to_plugin": 66, "path_to_python": 72, "pathologi": 24, "patienc": [27, 109], "patient": 74, "patient_1": 43, "patoffset": 17, "patorjk": 73, "patrick": 22, "pattern": [30, 31], "paul": [6, 74], "pavilion": 20, "paychequ": 98, "payment": 75, "pb": [12, 13, 30, 98], "pbeee": 108, "pc": [15, 26], "pcb": 102, "pcc": 69, "pchemlab": 98, "pci": 17, "pcid": 104, "pcie": 15, "pd": [74, 108], "pd_sim_sbs_121_1": 98, "pdf": [3, 20, 41, 66, 73, 89, 98, 106, 107, 109], "pdfshrink": 66, "peak": [74, 77], "peap": [84, 101], "peaplabel": 101, "pearson": 22, "pem": 101, "pennstat": 6, "peopl": [6, 13, 17, 27, 66, 69, 75, 93, 108], "pep8": 93, "per": [10, 13, 30, 70, 74, 106, 108, 109], "percentag": 41, "perf": 17, "perfect": 7, "perform": [3, 4, 13, 17, 27, 38, 41, 49, 66, 78], "performequ": 17, "perfus": 6, "period": [27, 74], "perm": 27, "perman": [17, 38, 61, 62, 78], "permeabl": 43, "permiss": [13, 15, 17, 25, 26, 38, 39, 55, 62, 65], "permit": 95, "perr": 17, "persist": [17, 39], "person": [12, 15, 24, 26, 27, 38, 75, 78, 79, 81, 90, 91, 93, 108, 109], "perspect": 39, "pertin": 78, "peru": 20, "pet": 58, "petr": 6, "pfa": 98, "pfpe": 98, "phalang": 93, "phantfunc": 17, "phantom": [74, 78, 102, 109], "phantomrecip": 106, "phase": [6, 24, 69, 74], "phase1": 101, "phase2": 101, "phd": [10, 22], "phone": [66, 85], "phosphor": 74, "photo": 98, "php": [40, 66, 81, 97, 99], "phs3210": 22, "phy": 6, "phy2300": 22, "phy6985": 22, "phy6990": 22, "physic": [6, 7, 17, 39, 97, 109], "physician": 6, "physiqu": 22, "pi": [13, 19, 98, 100, 101], "pick": [15, 17, 26, 27, 39, 81, 94], "pictori": 9, "pictur": 66, "pid": [17, 98], "piec": [39, 96], "pike": 74, "pin": [17, 81, 93], "pinch": 27, "ping": 27, "pip": [13, 37, 58, 72, 86], "pip_packag": 37, "pipe": 17, "pipefail": 15, "pipelin": [24, 74], "pipermail": 41, "pitfal": 38, "pixel": [3, 4, 50], "pixelm": 66, "pjt": 109, "pkill": 30, "pla": 100, "place": [19, 39, 66, 70, 78, 97, 106], "placehold": 109, "plai": 4, "plain": 39, "plan": [1, 10, 15, 22, 81, 93], "plane": 20, "plaqu": 24, "plastic": 98, "plateau": 97, "platform": [17, 58, 69], "player": [19, 66], "playlist": 19, "pleas": [1, 8, 13, 15, 17, 18, 19, 20, 22, 24, 25, 26, 27, 28, 38, 39, 46, 54, 74, 75, 78, 80, 87, 88, 89, 90, 91, 93, 97, 100, 108, 109], "pleasur": 20, "plein": 1, "plist": 66, "plist__old": 66, "plo": 109, "plot": [17, 71, 72], "plt": 72, "plug": [4, 21, 66], "plugin": [4, 15, 61, 66], "ply": 43, "pm": 17, "pm_l1": 17, "pmatricul": 84, "pmc": 109, "pmc3178846": 109, "pme": 17, "pmeclk": 17, "pmem": 13, "pmj": [24, 74], "pmj_dlabel": 24, "pmprintingexpandedstateforprint": 66, "png": [20, 30, 72, 93], "po": 20, "poem": 74, "point": [10, 15, 21, 24, 25, 26, 27, 34, 38, 42, 50, 69, 90, 93, 101, 109], "pointer": [17, 39, 93], "pointless": 10, "pointsetpercentag": 41, "pointsetsigma": 41, "polar": 77, "poli": [10, 20, 27, 97], "polici": [20, 78], "polydata": 47, "polyethylen": 98, "polygon": 50, "polygram": [16, 17, 98], "polygrames_password": 26, "polygrames_usernam": 26, "polyinvit": 15, "polymid": 98, "polymtl": [1, 5, 14, 15, 16, 17, 20, 21, 22, 25, 26, 39, 66, 75, 77, 81, 84, 86, 88, 92, 98, 99, 100, 101], "polymtlca0": 14, "polyroam": 84, "polyssl": 15, "polystyren": 98, "polytechinqu": 108, "polytechniqu": [1, 13, 14, 20, 84, 88, 89, 92, 96, 97, 99, 108, 109], "polyvpn": 27, "pontomedullari": 24, "popular": 39, "popularli": 41, "poq": 13, "port": [1, 17], "port_loc": 17, "port_numb": 15, "port_rosenb": 17, "portcommonmoderestoretim": 17, "portion": 27, "portnumb": 17, "porttpowerontim": 17, "posit": [41, 71, 77, 78], "posix": 83, "possibl": [10, 13, 14, 15, 20, 27, 38, 66, 93, 99], "post": [15, 17, 90, 92, 93], "post2": 37, "postdoc": [81, 92], "postdoctor": 80, "poster": [28, 109], "posterdesign": 20, "posteriori": 20, "postprocess": 24, "potenti": [55, 74], "pouc": 20, "pour": [22, 97, 108], "power": [17, 21, 31, 39, 56, 66, 69, 77, 109], "powerbook": 66, "powerpoint": 20, "ppa": 37, "ppl": 74, "ppn": 13, "pptx": [89, 109], "pr": [38, 108], "practic": [0, 3, 6, 99], "pratiqu": 22, "pre": 13, "preamp": 74, "preceed": 98, "preconfigur": 54, "precup": 22, "predefin": 31, "predict": [3, 74], "prefer": [1, 15, 17, 38, 50, 53, 66, 72, 85, 89, 93, 109], "preferredauthent": 15, "prefetch": 17, "prefix": [31, 38, 89, 93], "preheat": 100, "preliminari": 10, "prepar": [10, 97, 100, 106], "preparatif": 99, "prepend": 39, "preprocess": 70, "present": [3, 19, 20, 24, 34, 38, 70, 72, 109], "preserv": 40, "presid": 10, "press": [18, 25, 27, 30, 66, 69], "pretti": [10, 38, 86], "prevent": [30, 38, 39, 55], "preview": [20, 109], "previou": [10, 22, 24, 66, 84, 93], "previous": [24, 41, 84], "prgibx5odo8voaj2i38gprugjgznnkvvo": 27, "pri": 22, "price": 20, "primari": [24, 63], "primarili": 81, "primer": 9, "princip": [1, 22], "principl": 6, "print": [17, 18, 20, 30, 31, 71, 74, 102], "print0": 30, "printer": [11, 15, 81], "printf": 31, "priori": 20, "priorit": 15, "prioriti": [13, 74, 93, 101], "prisma": 15, "privaci": 66, "privat": [1, 27, 39], "privatebin": 30, "prive": 97, "privileg": [27, 54], "privnot": 73, "prix": 98, "pro": 109, "proactive_key_cach": 101, "probabilist": [3, 22, 33], "probabilit\u00e9": 22, "probabl": [38, 55, 61, 66, 69, 90], "probe": 74, "problem": [10, 27, 30, 34, 38, 40, 50, 66, 72, 74, 90, 93, 104], "problemat": [18, 55, 66], "proc": 34, "procedur": [11, 13, 15, 22, 25, 27, 30, 38, 69, 81, 91, 93, 106], "proceed": 8, "process": [4, 10, 12, 13, 15, 17, 22, 24, 25, 26, 27, 29, 35, 38, 39, 41, 44, 50, 53, 66, 69, 72, 74, 84, 93, 107, 109], "process_data": 38, "produc": [4, 24], "product": [14, 70, 98, 104], "product_id": 98, "product_information_sheet": 106, "prof": [10, 22], "professor": [21, 33], "profil": [15, 17, 58, 82, 83, 84], "profit": 28, "prog": 17, "program": [6, 10, 20, 24, 25, 29, 62, 66, 70, 99, 108, 109], "programm": [22, 99, 108], "programminghistorian": 56, "progress": [6, 74, 89, 90], "project": [1, 10, 13, 15, 17, 22, 23, 24, 25, 26, 27, 28, 46, 59, 69, 72, 81, 89, 90, 94, 104, 108, 109], "project1": 15, "project_hom": 83, "project_nam": 38, "projectnam": 78, "projet": 22, "prolif": 104, "promis": 3, "promot": 20, "prompt": [84, 86, 101], "proof": [22, 78], "propag": [22, 109], "properli": 70, "properti": 37, "proport": [20, 40], "propos": [6, 24, 41, 93, 108], "propseg": 13, "prospa": 25, "prostat": 3, "protect": 27, "proto": 101, "protobuf": 37, "protocol": [52, 66, 84, 93, 109], "provid": [4, 10, 17, 20, 24, 27, 38, 46, 54, 61, 69, 70, 81, 84, 93, 95, 100, 108, 109], "provinc": 96, "provinci": 99, "proxim": 40, "ps1": 86, "psacnn": 3, "pstree": 30, "psy6983": 22, "pub": [27, 37, 38, 52], "public": [10, 13, 19, 20, 24, 26, 27, 41, 42, 52, 71], "publickei": 38, "publicli": 93, "publish": [19, 72], "pubm": 3, "pui": 74, "pull": [52, 53, 80], "puls": [3, 15, 25, 77], "pulseox": 74, "pulseq": 6, "punctuat": 38, "purchas": 95, "pure": [10, 34], "purpl": [31, 93], "purpos": [15, 34, 73, 109], "push": [17, 27, 30, 39, 86], "put": [13, 14, 22, 26, 31, 38, 42, 61, 66, 69, 78, 81, 99], "putti": 15, "pve": 74, "pwr": 17, "pwrind": 17, "py": [3, 24, 35, 37, 65, 72, 86], "pycharm": [15, 66, 72, 93], "pydata": 65, "pyflak": 93, "pylab": 72, "pylint": 93, "pymvpa": 72, "pypi": 72, "pyplot": 72, "pyralux": 98, "pyrolit": 74, "pysurf": 72, "pytest": 72, "pytestedit": 72, "python": [15, 17, 24, 35, 37, 41, 58, 65, 71, 84, 93], "python2": 37, "python3": [17, 86], "python310": 17, "pytorch": [3, 17], "q": [6, 13, 30, 38, 39, 41, 43, 53], "qa": 106, "qbin": [20, 108], "qc": [12, 20, 79, 97, 108, 109], "qdel": 13, "qform": 48, "qin": 6, "qlgener": 66, "qlmanag": 66, "qlsc": 22, "qmrlab": [1, 74, 93], "qmrlab_gener": 1, "qmt": 74, "qmtlab": 74, "qr": 20, "qsform": 48, "qstat": [12, 13], "qsub": [12, 13], "qt": [69, 97], "quad": 15, "quadratur": 77, "qualiti": [19, 20, 109], "quantit": [3, 109], "quantiti": 106, "quartz": 15, "quebec": [13, 20, 22, 27, 81, 96, 99, 108, 109], "queen_elizabeth_urgent_car": 97, "queri": 66, "question": [6, 10, 30, 69, 91, 97], "queue": 13, "qui": 22, "quick": [3, 20, 24, 27, 38, 66, 69, 73, 86], "quickli": [66, 106], "quicklook": [15, 73], "quicksilv": 66, "quicktim": 19, "quit": [10, 13, 30, 53, 55, 69], "quiz": 73, "quot": 20, "qu\u00e9bec": [22, 108, 109], "r": [12, 13, 15, 17, 25, 26, 27, 30, 31, 39, 41, 55, 58, 66, 71, 78, 86, 97], "r0": 109, "r1": 109, "r1c4": 109, "r2": 109, "r20190908": 27, "r20230118": 93, "ra": 80, "raamana": 6, "rabbani": 22, "rabbit": 77, "rad6005": 22, "radiofr\u00e9qu": 22, "radiol": 6, "radiologi": 109, "radiologist": 6, "radiu": 41, "rai": 4, "rais": [28, 93], "rajiv": 74, "ram": [15, 17, 62], "ran": 62, "random": 17, "randomli": 41, "rang": [17, 24, 28, 31, 74, 77], "rank": 109, "raoul": 106, "rapi": 13, "rapid": [78, 87], "raspberri": [100, 101], "rat": 77, "rate": 78, "rater": 24, "rather": [10, 13, 17], "ratio": 20, "raw": [6, 26], "rbe": 17, "rbiq": [20, 108], "rc": 62, "rc1": 69, "rcb": 17, "re": [1, 10, 15, 20, 24, 54, 61, 66, 93, 96, 109], "reach": [15, 27, 38, 90], "read": [0, 10, 17, 25, 26, 30, 31, 38, 39, 66, 69, 70, 81, 93, 100, 106, 109], "readabl": [24, 30, 41, 109], "reader": 93, "readi": [79, 93, 109], "readm": [27, 38, 39, 71, 109], "readthedoc": 30, "real": [6, 24, 74, 97], "realist": [3, 74], "realli": [18, 22, 27, 39], "realtim": 104, "reason": [3, 20, 24, 66], "rebas": 93, "reboot": [34, 61, 62], "rebuild": [17, 34], "rec": 24, "receipt": [20, 98], "receiv": [3, 14, 15, 17, 20, 22, 24, 41, 66, 74, 77, 98, 99], "recent": [6, 27, 30, 38, 69], "recherch": [20, 109], "recip": [27, 39, 62], "recogn": [66, 70], "recognit": 3, "recommend": [1, 6, 10, 13, 15, 20, 24, 38, 66, 98, 109], "recon": [6, 74, 79], "reconnaiss": 22, "reconnect": 15, "reconsid": 27, "reconstruct": [3, 6, 22, 74], "record": [19, 39, 47, 66, 73], "recov": 27, "recoveri": 74, "rectangular": 109, "recto": 20, "recurs": [30, 31, 66], "red": [31, 50, 86], "redhat": [15, 39], "redirect": [5, 12], "reduc": [20, 24, 27, 74, 78, 100], "redund": [27, 69], "reev": 108, "ref": [38, 98], "refactor": 93, "refclk": 17, "refer": [3, 10, 17, 20, 22, 24, 38, 74, 93], "referenc": 109, "refin": 3, "reflect": 24, "reflog": 38, "refresh": 39, "refrid": 98, "refund": 20, "regaffin": 41, "regard": [20, 24, 28], "regina": 93, "region": [17, 24, 74], "regist": [13, 20, 27, 66, 74, 97, 99], "registr": [10, 20, 41, 69, 74], "registri": 53, "regkei": 17, "regress": [22, 93], "regular": [15, 39, 73], "regularli": [26, 87], "reihaneh": 22, "reimburs": [21, 75], "reinforc": 22, "reinstal": [38, 55, 61, 104], "rejsnooptran": 17, "rel": [15, 41, 42, 61], "relat": [6, 21, 24, 52, 66, 74, 93], "relationship": 3, "relax": [22, 106], "relaxometri": 3, "releas": [17, 34, 42, 69, 70, 71, 72, 93], "relev": [1, 10, 22, 24, 27, 28, 34, 39, 90], "reli": 27, "reliabl": 3, "relink": 55, "reload": [61, 62, 66], "rememb": 38, "remind": 75, "remot": [17, 27, 39, 100], "remote_repo": 38, "remotehost": 46, "remount": 65, "remov": [15, 27, 31, 34, 41, 55, 61, 66, 69, 86, 93], "remplir": 108, "ren": 74, "renam": [24, 38, 66], "render": [34, 93], "rensgen": 81, "rent": 96, "rental": 96, "reopen": [17, 27, 81], "reorient": 24, "repair": 50, "repeat": [1, 20, 93], "repertoir": 97, "replac": [38, 66], "replica": 17, "repo": [27, 38, 65, 72, 93], "report": [17, 24, 27, 39, 89, 93, 109], "repositori": [15, 24, 37, 39, 52, 90, 93, 109], "repository_nam": [24, 38], "repres": [24, 74, 93], "represent": [3, 22], "reproduc": [27, 93, 109], "reprographi": 20, "reqen": 17, "request": [10, 15, 17, 21, 22, 58, 78, 79, 80, 81, 87, 98, 109], "requir": [10, 13, 15, 20, 27, 46, 53, 54, 65, 69, 70, 71, 75, 79, 84, 86, 93, 97, 109], "requri": 15, "resampl": [20, 24, 66], "resamplingfactor": 24, "rescan": 74, "research": [0, 15, 20, 23, 24, 27, 28, 72, 73, 84, 108, 109], "researcher2": 27, "reseau": 101, "reserv": [75, 79], "reset": [18, 37, 66, 79], "resetpassword": 66, "resid": 6, "resist": 98, "resiz": 17, "reslic": 50, "resolut": [3, 15, 20, 24, 40, 71], "resolv": [30, 66], "reson": [3, 6, 9, 77, 109], "resourc": [1, 13, 15, 17, 28, 66, 69, 81, 90, 109], "resp": 74, "respect": [20, 62, 87, 93, 106], "respir": 74, "respiratori": 74, "respons": [10, 13, 27, 38, 78, 93, 109], "responses_to_review": 109, "ressourc": [94, 97], "rest": 38, "restart": [53, 61, 66], "restic": 27, "restic_password": 27, "restic_repositori": 27, "restrict": 26, "restrictedboltzmannmachin": 36, "restructur": 93, "result": [10, 24, 38, 41, 89, 109], "resum": 61, "retain": 27, "retim": 17, "retpolin": 17, "retriev": [3, 78], "return": [17, 66, 81], "retyp": 15, "reus": [24, 27], "rev": [6, 9, 17], "rev1a": 37, "revers": [3, 30], "review": [3, 6, 9, 10, 38], "revisit": 3, "revok": 27, "reward": 22, "rf": [3, 30, 39, 62, 66, 77, 81, 104], "rf_circuit_fabrication_rul": 107, "rfov": 74, "rfxg1": 104, "rg": 98, "rg174u": 98, "rg316u": 98, "rg58u": 98, "rg6": 98, "rgpin": 109, "richard": 108, "rick": 108, "rid": [27, 39], "right": [1, 12, 15, 17, 20, 26, 38, 50, 62, 70, 71, 83, 88, 90], "rigid": [41, 98], "ring": 98, "rise": 77, "rish": 22, "risk": 27, "rj": 9, "rk": 98, "rlxdord": 17, "rm": [27, 30, 34, 38, 53, 62, 66], "rm_firmware_act": 17, "rmam": 86, "rmi": 53, "rn": 66, "rnam": 86, "roam": 84, "robot": 22, "rocklandmd": 97, "rod": 77, "roemer": 6, "roger": [38, 98], "rohan": 22, "roi": [22, 50], "roken": 74, "role": 9, "rolland": 1, "rollov": 17, "rom": [17, 62], "roman": 17, "rome": 20, "romeo": 74, "room": 77, "root": [13, 14, 15, 17, 24, 26, 27, 42, 53, 54, 62, 74, 101], "rootlet": 24, "rootlets_dseg": 24, "rosemont": 97, "rosenberg": [17, 27, 46, 86], "rosin": 3, "rossignol": 9, "rotat": 41, "rotond": 1, "roughli": 39, "round": 98, "rout": 17, "routin": 40, "royal": 97, "rp": 93, "rsa": [27, 30, 38, 52], "rsn": 101, "rsna": 6, "rst": 93, "rsync": [27, 39, 78], "rtx": [15, 17], "rudko": 22, "rule": [10, 19, 22, 27, 93, 107, 109], "run": [12, 13, 15, 17, 24, 26, 27, 30, 34, 37, 38, 39, 41, 54, 58, 62, 63, 65, 66, 69, 70, 71, 83, 84, 90, 93, 101], "rupa": 30, "rw": [26, 39], "rx": 109, "rxcy": 109, "rxerr": 17, "rxof": 17, "ryyyymmdd": [27, 93], "r\u00e8glement": 22, "r\u00e9g\u00e9n\u00e9ratric": 22, "r\u00e9seau": 22, "s1": 31, "s1082687": 39, "s15564390": 39, "s2": 31, "s28305": 39, "s3": [27, 39, 58], "s7183853": 39, "sa": 1, "sacr\u00e9": 97, "safari": 66, "safe": [27, 39, 98], "safeti": [78, 79], "sag": 24, "sag_t2w": 24, "sag_t2w_label": 24, "sai": [18, 22, 30, 34, 35, 38, 39, 55, 66, 98], "said": 10, "sainsmart": 103, "saint": [97, 109], "salloc": 13, "same": [13, 15, 17, 18, 24, 27, 39, 41, 42, 50, 69, 75, 79, 84, 93], "sametmax": 30, "sampl": [3, 34, 41, 77, 98], "san": [1, 20], "sanchez": 108, "sant": 97, "santa": 97, "sant\u00e9": [97, 109], "sapien": 24, "sarath": 22, "sat": 74, "satellit": 3, "satisfi": 19, "save": [13, 19, 20, 24, 27, 30, 39, 41, 50, 70, 84, 98, 109], "savefig": 72, "sbatch": 13, "sc": [24, 74], "sc_seg": 24, "sc_softseg": 24, "scale": [13, 22, 41, 74], "scan": [12, 74, 78, 79, 91, 98, 109], "scanner": [66, 74], "scenario": [20, 93], "scene": 10, "schedul": 10, "scheme": [43, 70], "schemefil": 43, "schmeelk": 108, "scholarship": [20, 95], "schollenberg": 6, "school": [22, 71, 99], "schwab": 9, "schwartz": 9, "schweinhardt": 22, "sci": [9, 24], "scienc": [3, 17, 22, 28, 66, 109], "scientif": 20, "scientifica": 20, "scikit": [32, 36], "scipi": 72, "sclerosi": [3, 20, 24], "scm": 38, "scope": [66, 72, 93], "scotland": 20, "scott": 56, "scp": [12, 13, 17, 78], "scratch": [12, 13, 15], "screen": [14, 15, 17, 34, 50, 71, 73, 93], "screencaptur": 66, "screenflow": 66, "screenshot": [17, 27, 73, 93], "scribl": 101, "script": [15, 17, 24, 25, 26, 27, 30, 35, 37, 41, 42, 53, 65, 66, 72, 83, 84], "scripts_data": 42, "scroll": 30, "sct": [1, 13, 15, 20, 24, 26, 41, 46, 53, 65, 74, 93], "sct_5": 24, "sct_crop_imag": 24, "sct_deepseg_sc": 24, "sct_dev": 1, "sct_dir": [41, 65], "sct_gener": 1, "sct_imag": 86, "sct_orient": 50, "sct_pipelin": 13, "sct_propseg": 13, "sct_register_to_templ": 24, "sct_resampl": 24, "sct_test": [12, 15, 26], "sd": [17, 101], "sdb1": 17, "sde": 17, "sdelet": 62, "sdist": 72, "sdk": 69, "se": [24, 100], "seara": 6, "search": [1, 30, 39, 66, 69, 70, 93], "seashor": 66, "seat": 81, "sebastien": 22, "sebsauvag": 30, "sec": [20, 65, 75], "second": [20, 66, 79, 93], "secondari": [17, 27], "secret": [14, 72], "section": [10, 13, 15, 24, 27, 41, 42, 50, 62, 75, 80, 93, 95, 102, 109], "secur": [15, 17, 18, 66, 84], "sed": [31, 39, 86], "sediment": 106, "see": [10, 12, 13, 15, 17, 18, 20, 22, 24, 27, 28, 31, 34, 35, 37, 38, 39, 41, 46, 54, 66, 74, 75, 78, 79, 83, 84, 86, 89, 93, 97, 109], "seed": 66, "seem": [10, 41, 55, 69, 74], "seen": [10, 53, 54], "seg": 24, "segment": [4, 24, 33, 41, 47, 74, 93], "seif": 9, "select": [1, 4, 17, 18, 19, 20, 22, 25, 35, 50, 52, 62, 63, 69, 74, 83, 94, 109], "self": [3, 22, 93], "sell": 96, "seller": 98, "sem": 109, "semain": 1, "semant": 3, "semest": 10, "semi": [3, 4, 98], "semicolon": 86, "seminar": [19, 20, 22], "send": [10, 13, 19, 20, 22, 27, 30, 66, 73, 74, 75, 78, 79, 81, 109], "sender": 14, "sens": 74, "sensor": 17, "sent": [10, 14, 27, 38], "seoul": 20, "separ": [24, 42, 61, 81, 86], "sept": 20, "septemb": [10, 27], "seq": [6, 31], "sequenc": [3, 15, 24, 25, 33], "seri": [6, 31, 50], "serr": 17, "serv": [24, 38, 81], "server": [12, 17, 23, 24, 25, 26, 27, 30, 38, 39, 53, 65, 71, 78, 81, 85, 107], "serveur": 13, "servic": [15, 20, 34, 53, 78, 84, 85, 90, 93, 97, 109], "session": [13, 15, 17, 24, 30, 34, 39, 70, 75, 78, 79, 109], "session_manag": 15, "sessionnam": 78, "sessionname_x_x": 78, "set": [4, 14, 15, 17, 20, 27, 30, 34, 35, 38, 39, 50, 53, 62, 65, 69, 71, 72, 77, 81, 83, 84, 86, 93, 100], "setdefaulttyp": 66, "setfil": 30, "setget": 27, "settl": 99, "setup": [12, 72, 80, 81, 86], "seulement": [1, 20], "sever": [15, 17, 20, 24, 30, 31, 38, 39, 46, 62, 72, 74, 93, 108], "sex": [24, 74], "sform": 48, "sftp": [12, 27, 66], "sg3vifzk": 37, "sh": [13, 15, 17, 30, 31, 37, 41, 58, 61, 65, 66, 83, 86], "sha1": [38, 39], "sha1e": 39, "sha2": 38, "sha224": 39, "sha256": [27, 39], "sha384": 39, "sha3_224": 39, "sha3_256": 39, "sha3_384": 39, "sha3_512": 39, "sha512": 39, "shape": [17, 22, 43, 66], "shapeony": 66, "share": [1, 8, 13, 15, 24, 25, 26, 27, 30, 38, 39, 58, 69, 73, 83, 89, 96, 108], "sharepoint": 14, "shasum": 30, "sheet": [38, 71, 72, 81, 98, 100], "shell": [27, 29, 31, 61, 65, 66, 72, 82, 83, 94], "sherbrook": 13, "shield": [77, 98], "shift": [57, 66, 74, 100], "shim": [1, 46, 77, 81, 93], "shmuel": 22, "shop": [98, 100], "short": [10, 38, 74, 78, 106], "shortcut": [3, 15, 30, 66], "shot": 74, "should": [10, 15, 17, 20, 21, 24, 26, 27, 30, 34, 38, 39, 41, 42, 54, 65, 70, 72, 79, 84, 87, 89, 93, 98, 99, 109], "shouldn": 39, "show": [27, 39, 53, 62, 66, 72, 74, 97], "showhid": 66, "showhidden": 66, "shown": [15, 66], "showproduct": 104, "showq": 13, "showterm": 73, "shrink": [41, 62, 74], "shut": 61, "shutdown": [62, 66], "shy": [0, 27], "si": [14, 74, 101], "sica": 30, "siddiqi": 22, "side": [20, 38], "sidebar": 66, "sidecar": 27, "siemen": [15, 25, 74, 79], "sienax": 74, "sigma": [98, 106], "sigmaaldrich": 106, "sign": [15, 20, 38, 58, 78, 85], "signal": [7, 109], "signalis": 20, "signatur": [30, 66], "signaux": 22, "similar": [20, 61, 84], "simmri": 6, "simon": [22, 28], "simpl": [4, 22, 30, 38, 39, 56, 93, 109], "simpleemergencystop": 101, "simpler": 66, "simpli": [20, 38, 39, 41, 69, 84], "simul": [6, 15, 22], "simultan": [3, 15], "sinc": [1, 27, 38, 69], "singapor": 20, "singh": 9, "singl": [17, 24, 27, 31, 39, 74, 109], "sinon": 1, "sir": 97, "site": [24, 56, 66], "situat": 81, "sium": 20, "six": 37, "size": [3, 17, 20, 26, 27, 39, 71, 74, 77], "si\u00e8g": 1, "sk": 98, "skein256": 39, "skein512": 39, "sketchup": 15, "skin": 28, "sklearn": 36, "skype": 66, "slack": [1, 15, 27, 66, 81, 82], "slant": 73, "slash": [38, 93], "sleepwatch": 66, "slic3r": 100, "slice": [50, 74, 109], "slice_axi": 93, "slide": [19, 20, 22, 89, 109], "slideshar": 74, "slip": 87, "slot": [78, 79], "slotclk": 17, "slotpowerlimit": 17, "slow": 39, "slower": [17, 41], "slurm": 13, "sm": [9, 30], "sma": 98, "small": [3, 13, 27, 39, 41, 66, 74, 93, 108], "smaller": [13, 20, 41, 50], "smam": 86, "smart": 38, "smb": [15, 25, 26, 98], "smi": 17, "smit": 6, "smith": 74, "smooth": 39, "smp": 17, "smtp": 85, "snap": 41, "snapshot": [27, 38, 89], "snc": 20, "snd_hda_intel": 17, "snopyta": 30, "snow": 66, "so": [0, 1, 10, 13, 15, 17, 20, 22, 26, 27, 30, 38, 39, 54, 55, 62, 66, 69, 81, 84, 90, 93, 101, 108, 109], "sober": 73, "social": 28, "societi": 108, "socratica": 72, "soft": [24, 38], "softseg": [24, 74], "softwar": [0, 4, 13, 25, 26, 29, 35, 37, 44, 45, 46, 47, 63, 69, 71, 74, 80], "software_al": 6, "sold": 98, "solid": 15, "solut": [3, 15, 38, 90, 106], "solv": [10, 27, 34, 72], "some": [3, 10, 13, 15, 20, 22, 24, 25, 26, 27, 38, 41, 55, 66, 69, 70, 71, 80, 81, 84, 89, 93, 97], "somedomain": 38, "someon": [15, 27, 30, 38], "someth": [13, 20, 27, 30, 31, 38, 39, 41, 101], "sometim": [39, 50, 66, 109], "somewhat": 39, "somewher": 81, "sop": [77, 100, 104], "sop_add_linux_station_gram": 83, "sort": [15, 30, 66], "sound": 39, "sourc": [6, 12, 13, 15, 17, 24, 30, 37, 39, 41, 44, 53, 56, 58, 62, 66, 69, 70, 72, 73, 83, 86, 93], "source_branch": 38, "source_id": 24, "source_reg": 41, "sourcedata": 24, "sourceforg": [6, 41, 59], "south": 20, "space": [1, 3, 13, 17, 24, 27, 30, 39, 41, 62, 66, 74, 81], "spain": 20, "spam": 14, "spare": 17, "spatial": 33, "spatialrefer": 24, "spec": [15, 16, 22, 24, 34, 100], "speccycl": 17, "speci": 24, "special": [10, 24, 31, 93, 106], "specif": [13, 15, 17, 24, 27, 30, 39, 75, 81, 99, 107, 109], "specifi": [13, 15, 20, 24, 27, 38, 66, 72], "spectr": 22, "spectroscopi": 22, "spectrum": 98, "speed": [17, 100], "speeddi": 17, "spend": 20, "spent": [17, 81], "sphinx": 93, "spinal": [20, 24, 46, 93, 94, 108, 109], "spinalcordmri": [13, 74], "spinalcordtoolbox": [19, 20, 38, 53, 86], "spinalcordtoolbox_dev": 38, "spinbench": 6, "spine": [24, 27, 74], "spiral": 74, "spline": [7, 24, 40], "splineord": 41, "spondylot": 24, "sponsor": 13, "spot": [50, 74], "spotlight": 66, "spread": 39, "spreadsheet": 14, "springer": 3, "sprung": 30, "sp\u00e9c": 22, "sqlite": 39, "squar": 74, "squash": [27, 38], "squeue": 13, "sr": 38, "src": 12, "src_pad_reg": 41, "srcversion": 17, "ss": 30, "ssh": [12, 26, 27, 46, 52, 78, 86, 101], "ssh3351": 22, "ssh3352": 22, "ssh5503": 22, "ssh_exchange_identif": 38, "sshf": 15, "ssid": 101, "ssl": 15, "st": 97, "stabil": 106, "stabl": [36, 37, 41, 93], "stackexchang": 86, "stackoverflow": 69, "staff": 84, "stage": [74, 92, 99, 108], "stagiar": 99, "stai": 42, "stand": [20, 24], "standard": [6, 13, 15, 20, 24, 34, 40, 41, 53, 98], "stanford": 106, "start": [12, 15, 19, 24, 25, 31, 34, 38, 54, 62, 69, 79, 80, 89, 93, 94, 99, 100, 101, 109], "startxfce4": 15, "stat": [27, 39, 101], "state": [3, 6, 16, 17, 38, 41, 66, 93], "state_old": 66, "statement": 20, "static": [6, 56, 69, 74], "station": [17, 38, 74], "statist": 66, "statistiqu": 22, "statu": [15, 17, 38, 53, 66, 86, 93], "stavisi": 99, "std": [18, 69, 74], "std_dim1": 40, "std_dim2": 40, "std_dim3": 40, "stdenv": 39, "stdin": [15, 27], "stdlib": 69, "stem": 28, "step": [15, 17, 24, 27, 30, 34, 37, 38, 43, 62, 65, 66, 70, 79, 81, 90, 93, 100], "stern": 22, "sthash": 37, "stick": 100, "stikov": [22, 109], "still": [27, 38, 54, 66, 69], "stipend": 20, "stl": [66, 100], "stochast": 3, "stockholm": 20, "stoke": 3, "stop": [15, 30, 34, 54], "storag": [14, 37, 62], "store": [17, 23, 24, 27, 31, 39, 50, 66, 98], "stori": 66, "stp": 59, "strang": 27, "strategi": 38, "stream": 66, "stream_executor": 17, "streamlin": 24, "strength": 77, "stress": 10, "string": [24, 27, 30, 39, 41], "strong": 77, "strongli": [20, 38, 93], "structur": [3, 47, 69, 72, 74, 109], "stuctur": 24, "student": [0, 3, 10, 15, 20, 21, 22, 80, 81, 84, 89, 98, 99, 108, 109], "studentship": 20, "studi": [6, 10, 28, 78, 79, 99], "studio": 19, "stuf": 38, "stuff": [66, 89], "style": 38, "su": [27, 58, 61, 62], "sub": [24, 27, 30, 39, 57, 58, 74, 75, 109], "subcatagoryb": 98, "subfield": 3, "subfold": [12, 14, 89], "subfoldertoexclud": 30, "subject": [13, 27, 30, 31, 38, 39, 58, 71, 74, 93], "subject_a": 31, "subject_b": 31, "subject_list": 31, "subjectid": 24, "sublet": 96, "sublim": 15, "submiss": 89, "submit": [12, 13, 20, 90, 91, 98], "submodul": 38, "subscrib": [1, 87, 92], "subscript": 20, "subsequ": 24, "substat": 17, "substr": 31, "substrat": [43, 98], "subsystem": 17, "subvent": 108, "success": [17, 27], "successfulli": 86, "sud": 97, "sudo": [15, 26, 27, 30, 34, 37, 38, 49, 55, 61, 62, 65, 66, 69, 70, 101], "suffici": [24, 38], "suffix": [79, 109], "sugar": 72, "suggest": [20, 41, 69, 72, 93, 99, 109], "suit": [15, 27, 93, 97], "suitabl": 77, "sulfat": 106, "summar": 93, "summari": [38, 41], "summer": 22, "sun": 12, "supercomput": 39, "supervis": [3, 4, 22], "supervisor": [1, 10, 13, 20, 81, 89, 94, 108, 109], "suppli": [27, 95], "supplic": 101, "supplier": 107, "support": [3, 4, 10, 17, 21, 24, 27, 31, 37, 39, 41, 54, 66, 69, 79, 84, 100, 109], "suppress": 55, "sup\u00e9rieur": [1, 22, 108], "sur": 20, "sure": [10, 13, 20, 24, 27, 38, 49, 65, 66, 69, 84, 87, 92, 93, 97, 98, 108], "surfac": [47, 74], "surfact": 106, "surgic": 74, "surnam": 85, "surpris": 17, "surround": 74, "survei": 3, "suscept": 74, "sushi": 1, "suspend": [61, 66], "suzuki": 6, "sv": 17, "sven": 38, "sweden": 20, "swift": 77, "swig": 37, "switch": [34, 66, 74, 84], "switzerland": 20, "sxm2": 17, "sy": [17, 39], "sydnei": 20, "symlink": 39, "symmetri": 41, "symptom": 39, "symr": 20, "syn": 41, "sync": [1, 27, 58, 66], "synced_fold": 61, "syndicat": 92, "synonym": 24, "syntax": [30, 93], "synthesi": 3, "synthet": 74, "sysadmin": 27, "sysctl": 101, "sysf": 17, "syslog": 66, "system": [13, 14, 15, 17, 39, 53, 54, 55, 62, 65, 66, 69, 77, 79, 85, 90, 91, 101, 104, 109], "system76": 98, "syst\u00e8m": 22, "s\u00e9bastien": [15, 22], "s\u00f8rensen": 3, "t": [0, 3, 6, 13, 15, 17, 18, 20, 26, 27, 30, 34, 39, 41, 43, 52, 53, 54, 55, 62, 66, 69, 70, 71, 74, 78, 86, 87, 93, 99, 106, 109], "t0e0ormq1432652171008": 108, "t1": [71, 74, 106], "t1w": [24, 31], "t2": [13, 40, 71, 74, 106], "t2_seg": 30, "t2_seg_manu": 30, "t2_smooth": 40, "t2_z_smooth": 40, "t2d": 41, "t3": 71, "t3d": 41, "t4": 71, "t5": 71, "t6": 71, "t7": 71, "t8": 71, "t_commonmod": 17, "t_pwron": 17, "ta": 27, "taag": 73, "tab": 24, "tabl": [1, 24, 65, 109], "tabort": 17, "tabul": 86, "tacki": 66, "tag": [1, 24, 27, 39, 87, 109], "tag1": 38, "tag2": 38, "tag_xx": 38, "tagnam": 38, "taho": 39, "tail": 86, "taill": 74, "take": [17, 22, 28, 38, 62, 79, 93, 98, 99], "taken": [22, 24, 34, 78], "tal": 22, "talbott": 9, "talk": [3, 6, 10, 53], "tall": 74, "talon": 97, "tandem": 24, "tangui": [15, 43], "taniarascia": 56, "tank": 21, "tape": 100, "tar": [12, 37, 39, 69], "tardif": 22, "target": [3, 15, 17, 37, 50, 69], "targetfilenam": 50, "task": [15, 17, 87, 93], "taso": 6, "tatum": 15, "tbd": 20, "tc": 17, "te": 109, "tea": 20, "teach": 6, "teacher": 3, "team": [17, 39, 42, 93], "teamview": 15, "tech": [22, 78, 109], "technic": [3, 6, 15, 98], "techniqu": 3, "technologi": [6, 22, 28, 40], "tedpella": 98, "tee": [31, 37], "telemedicin": 97, "tell": [27, 54, 66, 70], "temp": [12, 17, 24, 26], "temper": 93, "temperatur": [17, 77, 100], "templat": [20, 24, 57, 70, 72, 89, 109], "template_nam": 24, "temporari": [24, 26], "temporarili": [38, 86, 89], "ten": 109, "tens": 38, "tensor": 17, "tensorflow": [13, 17, 54], "tensorflow_pkg": 37, "term": [38, 97], "termin": [12, 13, 17, 27, 30, 31, 34, 38, 49, 52, 53, 61, 62, 69, 70, 73, 86, 93], "terra": 15, "terranova": 25, "tesla": [15, 17], "test": [10, 13, 17, 26, 31, 34, 37, 63, 78, 86, 98], "test_al": 86, "test_sct": 86, "test_tensorflow": 37, "testsuit": 39, "text": [15, 38, 39, 41, 56, 66, 83, 93, 109], "textedit": [86, 101], "textpand": 66, "tf": 17, "tfevent": 17, "tfu1uw": 65, "than": [12, 13, 17, 20, 24, 30, 41, 50, 55, 62, 66, 93, 98, 99], "thank": [80, 89, 93], "thedisk": 62, "thei": [10, 13, 15, 20, 24, 27, 34, 38, 39, 70, 74, 77, 90, 93, 97, 98, 106], "thelinuxdaili": 62, "them": [10, 13, 15, 17, 19, 20, 24, 26, 27, 28, 38, 39, 41, 42, 53, 55, 61, 70, 75, 78, 93, 106, 109], "theme": [56, 93], "themselv": 39, "theoret": [22, 93], "thereaft": 71, "therefor": [24, 31, 41, 54, 70, 109], "thermo_scientific_nalgene_narrow_mouth_economy_bottle_hdpe_1000_ml_6_pk": 98, "thesi": [6, 10, 22], "thi": [0, 1, 3, 5, 13, 14, 15, 17, 20, 21, 22, 24, 25, 26, 27, 28, 30, 34, 35, 37, 38, 39, 40, 41, 42, 43, 46, 50, 52, 53, 54, 55, 58, 61, 62, 66, 69, 70, 71, 73, 74, 75, 77, 78, 79, 80, 81, 88, 89, 93, 95, 96, 97, 98, 99, 101, 102, 106, 109], "thick": [43, 98], "thing": [10, 20, 39, 83, 87, 93], "think": [10, 15, 53], "thinli": 39, "third": [40, 93], "thoma": [6, 9, 22, 106], "thompson": 9, "thoroughli": 10, "those": [24, 27, 62, 63, 81, 93, 101, 109], "though": [39, 69], "thought": [28, 74], "thoughtbot": 38, "thousand": 39, "thread": [41, 93], "three": [41, 50, 66, 93], "through": [3, 24, 27, 34, 39, 46, 66, 87, 93], "thu": [27, 50, 69], "thumb": 101, "thumbnail": 19, "thursdai": 98, "th\u00e9oriqu": 22, "ti": [17, 53], "ticket": [15, 21, 27, 90], "tif": 39, "tild": 42, "tildevers": 30, "time": [3, 6, 9, 10, 13, 15, 17, 18, 19, 20, 22, 26, 27, 43, 66, 74, 75, 77, 78, 93, 97, 99, 106, 108], "timeout": [15, 17], "timeoutdi": 17, "timer": [20, 93], "timet": 10, "timetrack": 66, "tip": [12, 20, 38, 66, 82, 97], "tips_and_trick": 66, "tissu": [74, 106], "titan": [15, 17, 34, 37, 109], "titl": [19, 20, 22, 38, 42, 71], "title_of_your_abstract": 20, "tk": 69, "tkip": 101, "tl": 84, "tldp": 31, "tlp": 17, "tlppfxpre": 17, "tmax": 43, "tmean": 66, "tmp": [15, 17, 37, 41, 53], "tmp_reg": 41, "tmpdir": 17, "tmtqaxtkdawca": 27, "toc_0": 56, "todai": 27, "todo": [1, 6, 41], "togeth": [27, 39, 54], "token": 72, "told": 69, "tone": 28, "too": [30, 39, 55], "took": [19, 22, 66], "tool": [4, 6, 15, 17, 27, 28, 29, 37, 38, 40, 45, 50, 53, 66, 69, 70, 109], "toolbox": [1, 3, 6, 20, 46, 93, 94], "toolkit": [15, 17, 34, 41, 54, 72], "top": [1, 20, 26, 30, 31, 34, 38, 50, 66, 74, 98], "topic": [10, 22, 27, 28, 34], "topolog": 3, "tor": 24, "tor001": 24, "torch": 17, "torchcontrib": 3, "torchio": 74, "tordcm001": 24, "torhc001": 24, "toronto": [20, 24, 98], "torrent": [39, 66], "torrentpars": 39, "total": 26, "totalfieldmeshsizeatbaselevel": 41, "totalfieldvarianceinvoxelspac": 41, "touch": [30, 39, 53, 66], "touchpad": 66, "toward": [3, 10], "tphcomp": 17, "tput": 86, "tr": 74, "tr1": 69, "trace": 39, "track": [4, 9, 17, 24, 57, 66, 90, 109], "tracker": [15, 21], "trackvi": 15, "tradit": 20, "trail": 38, "train": [3, 15, 20, 74, 79, 81], "trainabl": 4, "trait": 69, "traitement": 22, "transact": 109, "transfer": [3, 22, 24, 62, 74, 75, 77, 78, 109], "transferr": 3, "transfo": 41, "transform": [3, 50, 74], "transistor": 74, "translat": [63, 74], "transmedtech": [108, 109], "transmiss": 66, "transmit": [3, 6, 17, 74, 77], "transpar": 20, "transpend": 17, "transport": 20, "transvers": 50, "trap": 98, "trash": 27, "trauma": 9, "traumat": [9, 24], "travel": [96, 100], "travisci": 93, "treatment": [20, 70], "tree": [15, 38], "trerr": 17, "tri": 39, "triag": 93, "trick": [12, 66], "tridimensionnel": 22, "trigger": 66, "trim": 19, "tripl": 27, "trivial": 93, "troubleshoot": 100, "true": [17, 39, 41, 66], "truncat": 38, "trusti": 53, "trusty64": 61, "truth": 3, "try": [15, 20, 26, 30, 38, 39, 41, 66, 74, 93], "tr\u00e9": 22, "ts_audio": 66, "ts_video": 66, "tsv": 86, "ttm": 30, "tumor": 24, "tunabl": 77, "tune": 77, "turn": [10, 57, 66, 72], "tutel": 108, "tutori": [6, 7, 13, 15, 20, 30, 36, 41, 43, 56, 61, 62, 69, 93], "tw": [6, 104], "twice": 43, "twine": 72, "two": [15, 20, 24, 26, 34, 39, 41, 46, 54, 66, 78, 81, 93, 96], "twrr128": 17, "txt": [13, 31, 41, 42, 55, 69, 86, 93, 101], "type": [12, 15, 17, 20, 24, 25, 30, 34, 38, 39, 49, 52, 55, 57, 65, 66, 69, 70, 74, 78, 85, 93, 94], "type_trait": 69, "typic": [10, 15, 17, 20, 24, 38, 70, 93], "u": [13, 15, 27, 28, 30, 34, 38, 62, 66, 74, 78, 98, 104], "u000000": 26, "u108545": [17, 26], "u12345": 17, "u8lwqy1dukg": 62, "u918374": 17, "u932945": 26, "ubuntu": [15, 34, 37, 39, 49, 53, 54, 58, 61, 65, 83], "udem": [10, 13, 20, 22], "udf": 17, "uemsk": 17, "uesta": 17, "uesvrt": 17, "ug": 109, "uhf": 6, "ui": 66, "uid": [13, 39, 62], "uk": [20, 27, 39, 48, 66, 109], "ultid": 98, "ultimak": 100, "ultra": 6, "ultrashort": 3, "um": [43, 98], "umcu": 6, "umf": 104, "uml": 73, "umlet": 73, "umletino": 73, "umontr": 20, "umount": 26, "un": [30, 108], "unarchiv": 66, "unattend": 15, "unblock": 27, "unbound": 6, "uncom": 15, "uncomfort": 20, "uncorr": 17, "under": [15, 20, 24, 25, 27, 38, 39, 42, 52, 66, 75, 78, 79, 85, 89, 104, 108, 109], "undergradu": 22, "underscor": 24, "understand": [3, 6, 10, 24, 38, 39, 93], "undo": 38, "unf": [12, 20, 26, 75], "unf01": 58, "unfix": 74, "unfortun": 27, "uni": 22, "unif": 3, "uniform": 43, "uninit": 39, "uninstal": [37, 61], "uniqu": [20, 24, 30, 108], "unit": [13, 20, 24, 93, 109], "univers": [28, 98], "universit\u00e9": 109, "unix": [30, 39, 53, 66, 69, 72, 86], "unless": [10, 16, 39], "unlimit": [17, 41], "unlink": 55, "unlist": 19, "unload": 66, "unlock": [27, 39], "unmaintain": 30, "unmount": [26, 66], "unnecessari": [15, 27, 38], "unpack": [24, 69], "unprocess": 24, "unpublish": 38, "unreason": 20, "unsernam": 78, "unset": [15, 39], "unstag": 38, "unsupervis": 3, "unsupport": [17, 38], "unsupreq": 17, "unsur": 94, "until": 69, "untrack": 38, "unumero": 84, "unwrap": [38, 74], "unxcmplt": 17, "unzip": [30, 42, 53, 101], "up": [0, 15, 17, 18, 20, 22, 25, 26, 27, 30, 34, 61, 66, 69, 75, 81, 84, 93, 106, 109], "upcom": 93, "updat": [1, 15, 17, 30, 34, 37, 39, 47, 53, 55, 58, 61, 62, 71, 83, 93, 109], "update_config": 101, "updatefieldmeshsizeatbaselevel": 41, "updatefieldvarianceinvoxelspac": 41, "upenn": 3, "upgrad": [15, 37, 39, 66], "upload": [14, 19, 20, 24, 30, 39, 49, 93], "upon": [20, 93], "upstream": [38, 93], "urgenc": 93, "urgent": 97, "url": [19, 24, 26, 30, 38, 39, 63, 73, 93], "url_to_google_doc": 20, "url_to_repositori": 38, "us": [0, 1, 3, 4, 13, 14, 15, 16, 17, 19, 20, 23, 25, 26, 27, 29, 30, 31, 34, 35, 39, 40, 41, 42, 43, 46, 47, 49, 50, 52, 54, 55, 58, 61, 63, 71, 74, 75, 78, 81, 86, 87, 90, 91, 93, 95, 97, 98, 100, 101, 107, 109], "usa": [20, 98, 109], "usabl": 70, "usag": [17, 66, 93], "usb": 100, "user": [4, 13, 15, 16, 17, 20, 26, 34, 36, 38, 41, 42, 49, 53, 62, 65, 66, 77, 78, 84, 85, 86, 93, 101], "usernam": [12, 13, 15, 17, 26, 27, 30, 38, 46, 55, 62, 65, 70, 78, 84, 100, 101], "usherbrook": [13, 20], "usi": 106, "usplast": 98, "usr": [17, 34, 37, 41, 58, 65, 66, 69, 70, 83, 86], "usual": [10, 14, 20, 24, 27, 30, 39, 70, 97], "utf": [15, 86], "utf8": 98, "util": [17, 37, 41], "utilis": [15, 85], "utilis\u00e9": 1, "utoronto": 40, "uuid": [17, 39], "uzai": 74, "v": [6, 9, 12, 13, 31, 34, 38, 41, 53, 54, 61, 63, 66, 74], "v000010ded": 17, "v1": [17, 41], "v10": 15, "v100": 15, "v2": 17, "v3": 69, "v6": 24, "v8": [15, 39], "vacat": 1, "vacuum": [77, 104], "vahid": 22, "valid": [15, 17, 19, 24, 27, 70, 78, 93], "valu": [3, 15, 17, 24, 38, 39, 41, 43, 50, 70, 74, 106], "van": 6, "vancouv": 20, "vanier": 108, "var": [31, 101], "vari": [74, 93], "variabl": [3, 12, 15, 24, 30, 31, 34, 38, 42, 69, 70], "varian": 77, "variant": 39, "variat": [3, 40, 74], "varieti": 26, "variou": [17, 21, 23, 25, 26, 28, 29, 66, 88, 90], "vb": 61, "vbguest": 61, "vboxguestaddit": 62, "vboxlinuxaddit": 62, "vboxmanag": 62, "vboxsf": 62, "vbrexjkizgo": 61, "vbshare": 62, "vc": [3, 17], "vc0": 17, "vdi": 62, "ve": [38, 41, 97], "ve11c": 15, "ve12u": 15, "vector": 41, "vectori": 66, "veloc": 74, "vendor": [17, 21], "vendu": 98, "venv": [17, 72, 86], "venv3": 58, "venv_nam": 13, "verdict": 10, "verdun": 97, "veri": [20, 22, 39, 43, 66, 69, 78, 93, 98, 101], "verifi": [20, 24, 27, 34, 70, 72, 93], "vermag": 17, "versa": 39, "version": [13, 17, 20, 24, 26, 27, 30, 34, 38, 49, 54, 66, 69, 70, 72, 73, 78, 96, 108, 109], "version_numb": 13, "vertebr": [24, 50, 71, 74], "vertebra": [24, 74], "vertebrae_dseg": 24, "vestigi": 93, "vf": 39, "vga": 17, "vgasnoop": 17, "vi": [27, 30, 39, 62], "via": [3, 13, 15, 17, 27, 38, 39, 43, 72, 74, 75, 78, 87, 93, 101, 104, 107], "vibrat": 77, "vice": 39, "victoria": 97, "vidaurreta": 6, "video": [3, 15, 17, 19, 38, 66, 100], "video_seg": 3, "vie": 22, "view": [14, 15, 27, 50, 66, 74, 98], "viewer": [15, 46, 50, 66, 72, 73], "vim": [37, 38, 52], "vimrc": 30, "vinaigr": 15, "virtual": [13, 17, 20, 30, 46, 61, 66], "virtual_box": 25, "virtual_env_config": 83, "virtualbox": [15, 39, 61], "virtualenv": [13, 17, 72, 83], "visa": 95, "visag": 42, "visibl": [19, 20, 35], "vision": [3, 32], "visit": [24, 28, 81, 84], "visual": [3, 69, 100], "visualis": 15, "visualqc": 6, "vita": 10, "vlan": 15, "vlc": 66, "vm": [27, 61], "vm_share": 62, "vmdk": 62, "vncconfig": 15, "vncserver": 15, "vol": 6, "volatil": 17, "voltron": 98, "volum": [50, 66, 74], "volumetri": 3, "vop": 6, "vox": 40, "voxel": [20, 24, 40, 43], "voxeldim": 43, "vpn": [26, 27, 71, 84], "vpn_": 15, "vq": 39, "vqg907lodrcqm9j0": 27, "vr78v5ll72zamxzuxvsvudgy2grjnlreyheiqg1f3xtud68uwinx8zwa7ndtkpoz7aat063vd79wbrticfvambm8qhc3294zxqajjy9fx": 27, "vscode": [66, 101], "vt100": 63, "vtk": [41, 47], "vtk_dir": 69, "vtk_group_qt": 69, "vtk_group_rend": 69, "vtk_group_standalon": 69, "vtk_required_objcxx_flag": 69, "vtk_use_64bits_id": 69, "vtkbuild": 69, "vvd": 17, "vwr": 98, "vx": 38, "v\u00e9rifier": 74, "w": [6, 9, 13, 15, 25, 27, 30, 31, 39, 66, 86], "wa": [10, 24, 28, 38, 66, 69, 78, 86, 93], "wai": [15, 20, 24, 27, 38, 39, 69, 70, 74, 87], "wait": [13, 38, 97], "wakaba": 66, "wake": 66, "wakeup": 66, "walker": 43, "walltim": 13, "wang": 6, "want": [0, 6, 10, 14, 15, 17, 20, 25, 27, 30, 34, 35, 38, 40, 54, 55, 61, 62, 69, 70, 86], "warn": [38, 39, 53, 72, 101], "warp": 74, "warp_comp": 41, "warp_veci": 41, "warp_vecx": 41, "warp_vecz": 41, "warpimagemultitransform": 41, "watch": 61, "water": [21, 77, 106], "watt": 77, "wav": 66, "wave": 74, "wayland1": 17, "wc": 30, "wdpagefitbestfit": 57, "we": [0, 1, 3, 13, 17, 24, 26, 27, 28, 31, 38, 39, 46, 54, 58, 69, 74, 78, 81, 89, 93, 94, 109], "web": [6, 38, 39, 52, 69, 92], "webapp": 39, "webdav": 39, "webpag": 41, "websit": [10, 13, 20, 22, 38, 56, 69, 79, 93, 98, 109], "webupd8team": 37, "wed": 17, "week": [10, 15, 20, 22, 27, 31, 98, 99, 108], "weekli": 27, "weight": [3, 41, 74, 98], "weiskopf": 9, "weka": 4, "welcom": [0, 80, 90], "well": [10, 22, 27, 30, 39, 65, 66, 84], "were": [15, 22, 27, 37, 38, 93], "westcoast": 28, "westgrid": 13, "wget": [17, 30, 37, 39, 53, 101], "what": [1, 3, 6, 17, 20, 24, 27, 38, 39, 62, 93, 106], "whatev": [17, 30, 54], "wheelhous": 13, "wheezi": 65, "when": [1, 12, 13, 15, 19, 20, 24, 26, 27, 30, 38, 39, 46, 55, 61, 70, 71, 78, 84, 87, 90, 93, 101, 106, 109], "whenev": 93, "where": [12, 13, 17, 20, 22, 24, 26, 31, 34, 35, 38, 39, 40, 41, 54, 61, 62, 66, 69, 70, 78, 93], "wherea": 74, "wherei": [27, 39], "wherev": 39, "whether": [10, 20, 84], "whetston": 9, "which": [3, 4, 10, 13, 15, 16, 17, 19, 26, 27, 35, 39, 40, 41, 46, 53, 55, 66, 69, 70, 74, 75, 77, 79, 93, 99, 106, 109], "whichev": 10, "while": [10, 15, 17, 20, 25, 30, 31, 38, 39, 66, 93], "white": [3, 20, 24, 31, 86, 93], "whl": 37, "who": [15, 22, 27, 75, 79], "whoami": 62, "whole": [3, 10, 17], "whom": 10, "wi": 38, "wide": [41, 66, 84], "width": [17, 20, 93], "wifi": 101, "wiki": [0, 13, 40, 41, 61, 62, 69, 93], "wikibook": 40, "wikipedia": 106, "wildrepo": 27, "william": 6, "wilson": 9, "win": 38, "window": [20, 26, 38, 39, 41, 47, 53, 58, 62, 66, 74, 77, 84, 93, 101], "wing": [108, 109], "winsor": 41, "winter": 22, "winxp_idea": 25, "winxp_terranova": 25, "wire": 98, "wireless": [84, 109], "wise": 24, "wish": [15, 20, 30, 38, 66, 81], "within": [15, 20, 21, 24, 26, 30, 97], "without": [3, 4, 10, 15, 17, 24, 27, 34, 39, 41, 49, 55, 66, 70, 72, 74, 84, 93, 99, 106, 109], "wl": 50, "wm": 24, "wma": 66, "women": 28, "won": [27, 66, 69, 71, 93], "wong": 6, "wontfix": 93, "wood": 6, "word": [24, 27, 38, 41, 109], "wordpad": 101, "wordpress": [41, 56], "work": [3, 6, 10, 13, 15, 21, 26, 27, 30, 39, 41, 55, 62, 63, 65, 66, 69, 72, 74, 81, 84, 94, 95, 109], "workaround": [55, 66], "workbench": 66, "workdir": 13, "worker": 13, "workflow": [3, 4, 24, 27, 72, 86], "workforc": 28, "working_dir": 38, "workon_hom": 83, "workshop": 1, "workstat": 81, "world": [41, 84], "worm": 39, "wormhol": 30, "worri": 66, "worrisom": 3, "worth": 27, "would": [1, 10, 20, 27, 28, 41, 74, 78, 93, 97], "wpa": 101, "wpa_supplic": 101, "wq": 30, "wrap": [38, 86, 93], "wrapper": [61, 69], "writabl": [27, 30], "write": [10, 13, 15, 17, 22, 24, 26, 27, 38, 39, 53, 66, 70, 73, 75, 93], "writer": 27, "written": 24, "wrr128": 17, "wrr256": 17, "wrr32": 17, "wrr64": 17, "wsl": [15, 39], "wu": 22, "wvs5l6j56nf": 27, "ww": 50, "wwest": 28, "www": [3, 6, 14, 20, 22, 37, 38, 40, 41, 56, 61, 62, 66, 69, 72, 73, 74, 78, 81, 92, 97, 98, 99, 100, 104, 106, 108, 109], "x": [4, 6, 9, 15, 17, 26, 30, 34, 37, 38, 39, 40, 41, 46, 62, 63, 66, 70, 71, 74, 77, 93, 98, 101, 106, 109], "x11": [15, 34, 53, 66], "x16": 17, "x3": 39, "x6sr565m5g": 103, "x86_64": [17, 34, 39, 69], "xarg": [17, 30, 39], "xclock": 63, "xcode": [15, 38, 69], "xdefault": 63, "xdisp": 63, "xeon": [15, 16], "xey": 63, "xgestur": 66, "xhost": 53, "xkcd": 89, "xlabel": 71, "xlim": 71, "xmax": 24, "xmin": 24, "xometri": 104, "xorg": [17, 34], "xquartz": [46, 53, 66], "xr": 26, "xrdb": [15, 63], "xresourc": 15, "xserver": [17, 34], "xsetroot": 15, "xstartup": 15, "xtick": 71, "xticklabel": 71, "xvzf": 37, "xx": 38, "xxx": [24, 38, 65], "xxyxz": 41, "xy": 27, "xyz": [24, 30], "y": [6, 9, 12, 15, 17, 31, 38, 41, 53, 58, 61, 74, 77, 109], "yaman": 3, "yan": 6, "yarn": 49, "ybit": 30, "ye": [34, 53, 66, 84, 109], "year": [10, 24, 27, 38, 89, 97, 108], "yellow": 31, "yesod": 39, "yet": [15, 27, 38, 52, 71, 93], "ylabel": 71, "ylim": 71, "ymax": 24, "ymin": 24, "yml": 72, "yomayra": 109, "yosemit": 66, "you": [0, 1, 10, 12, 13, 14, 15, 17, 19, 20, 22, 24, 25, 26, 27, 28, 30, 34, 35, 39, 40, 41, 43, 46, 47, 49, 50, 52, 53, 54, 55, 61, 62, 65, 66, 69, 70, 71, 72, 75, 78, 79, 80, 81, 84, 85, 86, 87, 89, 90, 91, 92, 93, 94, 96, 97, 98, 99, 100, 101, 102, 104, 106, 108, 109], "your": [1, 10, 12, 13, 14, 15, 16, 17, 19, 20, 22, 25, 26, 27, 30, 31, 34, 35, 39, 41, 42, 49, 52, 53, 54, 55, 61, 62, 65, 66, 69, 70, 71, 75, 78, 79, 81, 84, 85, 86, 88, 89, 90, 91, 93, 94, 97, 98, 99, 100, 101, 108, 109], "your_branch": 38, "your_cas_password": 15, "your_cas_usernam": 15, "your_code_her": 101, "your_data": 79, "your_email": [38, 52], "your_env": 46, "your_hash_her": 101, "your_login": 38, "your_nam": 53, "your_password": 85, "your_path": 12, "your_polygrames_password": 15, "your_polygrames_usernam": 15, "yourself": [13, 15, 27, 38, 54, 70, 78], "yourusernam": 27, "youtub": [3, 11, 30, 61, 66], "yue": 22, "yum": [53, 65], "yyyi": [30, 89], "yyyymmdd": 89, "yyyymmdd_": 89, "yyyymmddhhmm": 30, "z": [6, 13, 27, 30, 31, 38, 41, 62, 74, 77, 104], "zaharchuk": 6, "zamboni": 39, "zcvhf": 12, "zero": [3, 13, 17, 31, 35, 62], "zerobin": 30, "zfzxo2kyot9o4lhq0qqsklumtyuieyje26wl1zililmtgvgmxxkxvinf": 27, "zhao": 6, "zhuoqiong": 74, "zimbra": [1, 85], "zip": [17, 42, 78, 93], "zmax": 24, "zmin": 24, "zoom": [20, 50, 57, 74], "zshrc": 86, "zulli": 98, "zumbal": 74, "zur": 24, "zurich": 24, "zursci001": 24, "zxvf": 30, "\u00b2": 109, "\u00e0": [1, 22, 74], "\u00e9clairag": 1, "\u00e9cole": 15, "\u00e9galement": 74, "\u00e9lectriqu": 22, "\u00e9mergent": 22, "\u00e9pini\u00e8r": 108, "\u00e9tat": 22, "\u00e9thiqu": 22, "\u00e9tude": [22, 108], "\u00e9tudiant": 84, "\u00e9vident": 74, "\u00eele": 97}, "titles": ["\u2697\ufe0f Lab Manual", "\ud83d\udcc5 Calendar & Meetings", "\ud83d\udcda Bibliography", "Deep Learning", "Histology", "Theses", "MRI", "MRI Analysis", "Paperpile Folder", "Spinal Cord Injury", "\ud83d\udcd6 Comprehensive Exam", "\ud83d\udda5 Computing Resources", "\ud83d\udda5 Computers @CRIUGM", "\ud83d\udda5 Compute Canada", "\u2601\ufe0f Microsoft 365", "\ud83d\udda5 Computers @NeuroPoly", "CPU Clusters", "GPU Clusters", "\ud83d\udda8 Printer", "YouTube Procedure", "\u2708\ufe0f Conferences", "\ud83d\udcde Contact", "\ud83c\udf93 University Courses", "\ud83d\udcbe Data", "Dataset curation", "django", "duke", "data", "\ud83e\udde9 EDI", "\ud83e\udd13 Geek tips", "Bash/Shell", "Script", "Deep Learning", "Conditional Random Fields (CRF)", "CUDA", "Misc", "Restricted Boltzmann Machines (RBM)", "Tensorflow", "Git & Github", "git-annex", "Image Processing Software", "Advanced Normalization Tools (ANTs)", "Anima", "Diffusion Simulator", "FreeSurfer", "FSL", "FSLeyes", "ITK-SNAP", "NIfTI", "OpenNeuro CLI", "OsiriX", "Various Software & Tools", "BitBucket", "Docker", "Docker for Deep Learning", "Dropbox", "Jekyll", "Microsoft Word", "OpenNeuro", "Sketchup", "Virtual Machines", "Vagrant", "VirtualBox", "XQuartz", "OS Guides", "Linux", "MacOSX", "Programming Languages", "C++", "Installation of VTK and ITK on Mac OS X", "Using XCode", "MATLAB", "Python", "Useful links/Software", "\ud83d\udca1 Ideas for Cool Projects", "\ud83e\uddf2 MRI Scanning", "Concordia (3T GE)", "MHI (7T Agilent)", "MNI/McGill (7T Terra)", "UNF (3T Prisma)", "\ud83d\udc4b Onboarding", "Campus Access", "Computer Setup", "\ud83d\udca1 Other configuration tips", "\ud83d\udcf6 Eduroam", "\ud83d\udce7 Email", "\ud83d\udcbb Shell Profile", "\ud83d\udde3 Slack", "Consultants and RA", "Google Drive", "Getting Started", "Infrastructure", "Postdoctoral fellows", "Software development", "Students and Interns", "\ud83d\udcce Practical Information", "\ud83c\udde8\ud83c\udde6 Living in Montreal", "\ud83c\udfe5 Medical", "\ud83d\udee0 Purchasing Supplies", "\ud83c\udf0e VISAs and Work Permits", "3D Printing", "OctoPrint", "\ud83d\udd27 RF Lab", "CNC machine", "Misc", "NeuroPoly Coils", "Phantoms", "PCB Manufacturing", "\ud83d\udcb0 Scholarships", "\u270d\ufe0f Academic Writing"], "titleterms": {"": 100, "04": 62, "1": [66, 69, 70], "10": 69, "108mm": 77, "120": 77, "14": 62, "140": 77, "184mm": 77, "19": 81, "1h": 77, "2": [66, 70], "205": 77, "210": 77, "22": 38, "2d": 66, "3": [66, 70], "300mhz": 77, "3018": 103, "305": 77, "3170cdw": 18, "3170cdw_": 18, "365": 14, "38": 77, "3d": 100, "3t": [76, 79], "4": [69, 70], "5": [34, 69], "6": 69, "60": 100, "7": 34, "7t": [77, 78], "9": 69, "AND": 31, "As": 66, "Be": 69, "FOR": 31, "IF": 31, "OR": 31, "TO": 38, "The": [10, 66], "Theses": 5, "_brother_hl": 18, "_errorlow_ton": 18, "abbei": [15, 16], "abstract": 20, "academ": 109, "access": [17, 26, 54, 79, 81, 84], "accommod": 96, "account": [13, 14, 27], "acknowledg": 109, "acquisit": 74, "adapt": [3, 104], "add": [27, 38, 70, 83, 85], "add_linux_machine_to_gram": 83, "addit": 62, "address": 109, "admin": [15, 27, 70], "admiss": 22, "advanc": 41, "advic": 43, "advis": 81, "affect": [39, 84], "affili": [81, 109], "affin": 41, "after": 38, "agil": 77, "agnost": 17, "ai": 94, "alias": 38, "alwai": 57, "amend": 38, "an": [15, 27, 70, 93], "analysi": [3, 7], "anatom": 3, "anima": 42, "annex": 39, "anoth": [38, 66], "ansi": 31, "ant": [41, 65], "antsregistr": 41, "app": [83, 85], "appli": 3, "applic": 66, "ar": 38, "archiv": 66, "arrai": 31, "arriv": 81, "arteri": 6, "articl": 109, "asl": 6, "associ": [28, 88, 92], "author": 20, "autom": 66, "automat": 65, "aw": 58, "award": 108, "awesom": 30, "b0": 6, "b1": 6, "back": 38, "background": 30, "backup": [15, 17, 27], "base": 30, "bash": 30, "bash_profil": 30, "basic": 61, "befor": 81, "being": 66, "between": [30, 38], "bibliographi": 2, "bid": 24, "big": 100, "binari": 47, "biomed": 22, "birdcag": 77, "bire": 15, "bitbucket": 52, "bodi": 93, "boltzmann": 36, "book": [1, 17, 75, 76, 78, 79], "boot": 66, "box": [61, 66], "branch": [27, 38, 93], "brother": 18, "build": [24, 53, 69, 70], "build_docker_container_from_dockerfil": 53, "builder": 100, "bunch": 30, "c": 68, "c3d": 65, "ca": 27, "cabl": 98, "calendar": [1, 75], "campu": 81, "canada": 13, "cannot": [39, 66], "capacitor": 98, "capitan": 104, "captur": 66, "case": 24, "cc": 13, "cd": 66, "cedar": 13, "center": 66, "cento": 65, "chang": [30, 38, 66, 84, 93], "change_folder_icon": 66, "changelog": 24, "characterist": 77, "check": [13, 30, 38, 39, 109], "checkout": 38, "checksum": 30, "chrome": 66, "cli": 49, "click": 66, "clinic": 109, "clone": 38, "close": [38, 84], "cloud": 13, "cluster": [12, 15, 16, 17], "cnc": 103, "cnn": 3, "code": [17, 24, 31, 72, 93], "coil": [6, 22, 74, 76, 77, 104, 105, 109], "collect": 77, "color": 31, "colour": 31, "come": 38, "command": [15, 31, 61], "comment": 109, "commit": [27, 38, 93], "compar": 38, "comprehens": 10, "compress": 30, "comput": [11, 12, 13, 15, 22, 30, 81, 82, 91, 98], "concordia": 76, "condit": 33, "confer": 20, "config": [39, 66], "configur": [38, 83], "configure_virtualenvwrapper_under_linux": 83, "conflict": [38, 93], "connect": [15, 17, 27, 38], "connector": [98, 104], "consent": 78, "consult": 88, "contact": 21, "contain": [53, 54], "continu": [3, 93], "contribut": 38, "control": 6, "convent": [24, 38], "converg": 41, "convert": 24, "cool": 74, "copi": [30, 53, 66], "copy_file_into_contain": 53, "copymake_a_disk_image_from_cddvd_iso_format": 66, "cord": [3, 9, 50, 74], "correct": 40, "cosmet": 39, "could": 84, "cours": [22, 33, 38, 72], "cover": 109, "covid": 81, "cpu": [12, 15, 16, 61, 66], "creat": [12, 13, 20, 31, 38, 47, 54, 62, 66, 70], "create_a_mesh_out_of_a_binary_fil": 47, "create_a_virtual_machine_vm_with_debian": 62, "create_recovery_partit": 66, "creation": [14, 70], "credenti": 77, "crf": 33, "criugm": 12, "csv": 31, "cuda": [34, 37], "curat": 24, "current": 38, "daili": 96, "data": [3, 12, 14, 17, 23, 24, 27, 77, 78, 79, 91], "datalad": 58, "dataset": [24, 54, 58], "dataset_descript": 24, "date": [31, 38], "de": 22, "debian": 62, "deep": [3, 32, 54, 74, 94, 109], "default": [38, 66], "deform": 41, "delet": [27, 30, 53], "deriv": 24, "descript": 24, "design": 107, "desir": 66, "desk": 81, "develop": 93, "devic": 27, "diagnosi": 9, "dialog": 66, "dialog_boxselect_option_with_tab": 66, "dialogu": 66, "diffus": [6, 43], "disabl": 66, "disable_notification_cent": 66, "discard": 38, "disk": [15, 66], "displai": [53, 66], "distil": 104, "distribut": [3, 53, 70], "divers_lien": 99, "django": 25, "dn": 30, "do": 10, "doc": 109, "dock": 66, "dock_in_2d": 66, "docker": [35, 53, 54], "docker_environ": 54, "dockerfil": 53, "docstr": 93, "doctor": [97, 108], "document": [10, 36, 77, 93], "doesn": 38, "domain": 3, "don": 84, "doubl": 66, "download": [27, 30, 38, 58, 78, 79], "draft": 20, "drive": [66, 89], "driver": 37, "dropbox": [55, 66], "dual": 100, "duke": 26, "dure": 38, "dvd": 66, "dwi_mean": 66, "dyld_library_path": 70, "each": 15, "ectrim": 20, "edi": 28, "edit": 70, "editor": 30, "eduroam": [81, 84], "el": 104, "elig": 79, "elm": 12, "email": [30, 85], "emb": 20, "emerg": 97, "empti": [30, 66], "end": 97, "entiti": 24, "environ": [13, 54, 72], "epic": 93, "error": [18, 37, 66], "escap": 31, "ethic": [22, 75], "exam": 10, "exampl": [24, 40, 41, 69], "exceed": 66, "exist": 38, "expand": 66, "expect": 41, "expos": 54, "extens": [24, 30], "extern": 54, "extra": 27, "extract": 30, "facil": 75, "famili": 97, "featur": 3, "fedora": 65, "feed": 100, "fellow": 92, "few": 3, "field": [33, 41], "figur": [71, 109], "file": [13, 30, 31, 38, 39, 41, 47, 53, 62, 66, 70], "fill": [78, 79], "film": 3, "filter": 40, "find": [30, 79, 97], "finder": 66, "first": [10, 38, 81], "fitzgerald": 15, "fix": [37, 38, 69, 98], "fix_cuda_driver_vers": 37, "fix_module_tensorflow_import_error": 37, "flight": 96, "folder": [8, 30, 61, 62, 66, 109], "forc": 53, "fork": 38, "form": [78, 79], "format": [66, 109], "framework": 32, "frameworkslibrari": 32, "freder": 100, "freesurf": 44, "from": [12, 20, 26, 30, 38, 53, 66, 106], "fsl": [45, 65, 66], "fsley": [46, 66], "fslview": 66, "fundament": [6, 7], "gan": 3, "gaussian": 40, "ge": [15, 76], "geek": 29, "gener": [6, 31, 38, 66, 109], "generate_log_fil": 31, "genmitsu": 103, "gerber": 104, "get": [13, 27, 61, 77, 90], "git": [38, 39], "github": [38, 93], "give": 10, "given": 30, "global": [39, 66], "global_default_config": 66, "good": [17, 74], "googl": [66, 75, 89, 109], "gpg": 38, "gpu": [15, 17, 35], "gradient": [41, 77], "grame": [15, 83, 107], "grammar": 109, "graphic": 15, "group": [15, 30], "guest": 62, "gui": 26, "guid": [27, 64], "guidanc": 93, "h_140184mm_300mhz_quad_birdcage_coil": 77, "h_38108mm_300mhz_quad_birdcage_coil": 77, "habit": 17, "hardlink": 39, "hardwar": 17, "harvard": 28, "hat": 65, "hd": 77, "hd_gradient_coil": 77, "hd_gradient_coil1": 77, "hdd": 30, "heard": 84, "help": 90, "hidden": 66, "high": 66, "histologi": [4, 74], "hl": 18, "host": 38, "how": [38, 57, 70, 107], "how_to_always_open_a_page_with_page_width_view": 57, "how_to_design_pcb_for_pcbwai": 107, "href": [30, 61, 62, 83], "i": [10, 84], "icm": [77, 106], "icon": 66, "id": [18, 20, 30, 31, 32, 33, 35, 36, 37, 39, 43, 46, 47, 50, 53, 54, 57, 61, 62, 66, 71, 72, 77, 83, 99, 107], "idea": 74, "idea3t": 15, "idea7t": 15, "ieee": 20, "ignor": 38, "imag": [3, 7, 22, 40, 53, 66, 74, 94], "implicit": 28, "import": [37, 62], "import_a_ova_fil": 62, "incl": 97, "inform": [3, 95], "informat": 94, "infrastructur": 91, "initi": 27, "injuri": 9, "input": 31, "insid": 38, "instal": [15, 34, 37, 38, 39, 41, 42, 44, 45, 46, 49, 53, 58, 61, 62, 69, 72], "install_fsley": 46, "install_guest_addit": 62, "install_run_linux_distribut": 53, "install_tensorflow": 37, "instrument": 22, "integr": 93, "intens": 40, "inter": 3, "interfac": 15, "intern": [74, 94], "internet": 30, "internship": [74, 99], "introduct": [46, 93], "isbi": 20, "isc": 20, "ismrm": 20, "iso": 66, "isol": 35, "isolating_gpus_without_dock": 35, "issu": [69, 71, 93], "itk": [41, 47, 69, 70], "jacaranda": 12, "jekyl": 56, "job": [12, 13], "joplin": [15, 16], "journal": 109, "json": 24, "keep": 38, "kei": [30, 38], "keyboard": 66, "keynot": 66, "kill": [13, 30], "kit": 36, "lab": [0, 81, 98, 100, 102], "label": [6, 24, 93], "languag": [15, 22, 67], "latest": 38, "launch": 66, "learn": [3, 22, 32, 36, 54, 74, 94, 109], "lesag": 100, "lesion": 3, "let": 66, "letter": 109, "librari": [32, 69], "licens": 93, "life": 96, "line": [15, 31], "linear": 3, "link": [30, 31, 70, 73, 99, 106], "linux": [15, 34, 53, 65, 83], "liom": 106, "list": [13, 15, 20, 27, 38, 53], "list_local_docker_imag": 53, "live": 96, "load": 66, "local": [15, 38, 53], "locat": 39, "lock": 66, "lock_screen": 66, "lock_screen_upon_sleep": 66, "log": [31, 66, 75], "logbook": 75, "login": 12, "logist": 81, "long": 17, "longitudin": 3, "look": 30, "loop": 31, "lost": 38, "low": 18, "m": 3, "mac": [66, 69], "machin": [22, 36, 60, 62, 83, 103], "maco": [61, 83, 85], "macosx": 66, "magnet": 104, "mail": 85, "mainten": 66, "make": 66, "make_hidden_applications_icons_transpar": 66, "manag": 109, "mandatori": 93, "manual": [0, 40, 50, 62], "manual_method": 62, "manual_segmentation_of_the_spinal_cord": 50, "manufactur": [104, 107], "map": 81, "master": 108, "match": 41, "matlab": [66, 71], "matplotlib": 72, "mcgill": [22, 78], "md": 24, "mds_store": 66, "median": 40, "medic": [3, 22, 94, 97], "medicin": 97, "meet": 1, "memori": 61, "merg": 38, "mesh": 47, "messag": 38, "meta": 3, "method": 62, "metric": 41, "mhi": 77, "miccai": 20, "microsoft": [14, 57, 66], "mid": 17, "mila": 81, "miniconda": 65, "misc": [15, 31, 35, 66, 104], "misc_": 18, "miscellan": 98, "mixup": 3, "mni": 78, "mode": 38, "modix": 100, "modul": [3, 13, 37], "monitor": 17, "montreal": 96, "montr\u00e9al": 22, "mount": [15, 26, 65], "mr": 6, "mri": [3, 6, 7, 9, 15, 75, 79, 91, 94, 109], "msc": 108, "my": 84, "myelin": 74, "n3": 40, "n4": 40, "name": [24, 38], "net": 3, "network": 30, "neural": 3, "neuro": 27, "neuroimag": [7, 72, 109], "neuropoli": [15, 105], "new": [27, 39, 70], "nibardo": 106, "nice": [66, 72], "nifti": 48, "niftiview": 83, "niftiviewerapp": 83, "node006": 15, "node007": 15, "non": [30, 40, 41, 70, 104], "normal": [40, 41], "notif": 66, "number": 30, "number_of_fil": 30, "nvidia": 54, "o": [64, 69], "octoprint": 101, "od": 3, "offic": [92, 100], "ohbm": 20, "old": 15, "onboard": 80, "one": 81, "onedr": 14, "ones": 38, "onli": 41, "onlin": [20, 33], "online_confer": 20, "ood": 3, "open": [57, 66, 93], "openneuro": [49, 58], "oper": 77, "option": [66, 93], "oral": 10, "order": 81, "organ": [81, 109], "osirix": 50, "osx": [57, 69, 104], "other": [38, 83, 99], "out": [3, 47, 66, 78], "ova": 62, "overleaf": 109, "overview": [58, 84], "owner": 30, "packag": 72, "page": 57, "pai": 75, "paper": [28, 33, 66], "paperpil": [8, 109], "paramet": [30, 41], "parametr": 40, "pars": 31, "part": 104, "particip": [24, 75, 79], "partit": 66, "password": [15, 66], "pathophysiologi": 9, "pcb": [98, 107], "pcbwai": 107, "perman": 66, "permiss": [27, 30, 66], "permit": 99, "peterson": 15, "phantom": [98, 106], "phase": 70, "phd": 108, "physic": [3, 94], "pi": 81, "pid": 30, "pipe": 98, "plan": 20, "platform": 109, "pleas": 81, "plugin": [46, 101], "point": 41, "poli": [15, 107], "polici": 24, "polymtl": [27, 85], "polytechniqu": [15, 22, 81], "port": [38, 54, 66], "postdoc": 99, "postdoctor": [92, 108], "poster": [20, 98], "pr": 93, "practic": 95, "prepar": 69, "prerequisit": 27, "present": 10, "preview": 66, "previou": 38, "print": [66, 100], "printer": [18, 100], "prior": 3, "prisma": 79, "privat": [74, 97], "problem": 39, "procedur": [19, 77], "process": [7, 30, 40], "profil": 86, "program": [15, 22, 67, 74], "progress": 93, "project": [38, 70, 74, 93], "prompt": 66, "propos": 10, "protocol": 81, "prover": 103, "provis": 61, "pse": 41, "public": [15, 30, 74, 97], "pull": [27, 38, 93], "puls": [6, 74], "purchas": 98, "push": 38, "pycharm": 38, "python": [13, 72], "qc": 6, "quad": 77, "qualiti": 6, "quicklook": 66, "quota": 66, "ra": 88, "random": 33, "rapid": 17, "rater": 3, "raw": [24, 77, 79], "rbm": 36, "readm": 24, "rebas": 38, "reboot": [15, 66], "reboot_station_with_termin": 66, "recip": 106, "recommend": [43, 62, 93], "reconstruct": [77, 79], "recov": 38, "recoveri": [27, 66], "red": 65, "redirect": 53, "reduc": 62, "reduce_the_size_of_the_vm": 62, "refer": [14, 27, 34, 37, 109], "refus": 38, "reimburs": [20, 98], "releas": 27, "remot": [15, 30, 38, 46, 53], "remov": [30, 38, 39, 53], "remove_docker_image_or_containers_force_delet": 53, "remove_files_from_tmp": 30, "renam": [27, 30], "repair": 66, "repo": 39, "repositori": [27, 38], "request": [27, 38, 93], "requir": [22, 81], "research": [10, 88], "reset": [38, 39], "resourc": [3, 4, 11, 38, 71, 72], "restrict": [36, 41], "retriev": 15, "revert": 38, "review": [27, 93, 109], "rf": [6, 22, 74, 98, 100, 102], "right": [27, 66], "rm": 39, "rod": 98, "rollback": 38, "roman": 15, "room": [1, 81], "rosenberg": 15, "rsync": 30, "run": [46, 53, 61], "run_docker_imag": 53, "run_with_display_redirect": 53, "same": 66, "save": [53, 66], "save_a_docker_imag": 53, "scan": 75, "scanner": [75, 76, 77, 78, 79], "schedul": 15, "scholarship": 108, "sci": 36, "scientif": 109, "scp": 30, "screen": [30, 66, 78], "screenshot": 66, "screenshot_in_desired_format": 66, "script": [12, 13, 31], "search": [38, 53], "segment": [3, 9, 40, 50], "select": [38, 66], "sequenc": [6, 74, 93], "serial": 104, "server": [13, 15, 66], "servic": [66, 73], "set": [41, 61, 66, 70], "set_the_expanded_print_dialogue_as_default": 66, "set_the_expanded_save_dialogue_as_default": 66, "setup": [27, 82, 84], "sftp": 15, "share": [14, 20, 62, 66], "shared_fold": 62, "shell": [30, 86], "shim": [6, 74, 104], "short": 17, "shortcut": [27, 57], "shot": 3, "show": 38, "sidecar": 24, "sigma": 41, "simul": [43, 74], "size": [30, 62], "sketchup": 59, "slack": 87, "sleep": 66, "slow": 17, "small": 100, "smooth": [40, 41], "snap": 47, "softwar": [6, 15, 17, 22, 38, 40, 51, 66, 73, 93], "solut": 66, "sourc": 84, "source_filenam": 24, "sourcetre": 38, "span": [0, 1, 2, 10, 11, 12, 13, 14, 15, 18, 20, 21, 22, 23, 28, 29, 74, 75, 80, 83, 84, 85, 86, 87, 95, 96, 97, 98, 99, 102, 108, 109], "specif": [38, 66, 76, 77, 93], "spectroscopi": 6, "spin": 6, "spinal": [3, 9, 50, 74], "spine": 104, "ssh": [15, 17, 30, 38, 61, 63], "standard": 77, "start": [10, 13, 61, 90], "startup": [61, 65], "statement": 31, "station": [15, 26, 30, 66, 77], "statist": 22, "statu": 39, "stderr": 30, "stdout": 30, "stdoutstderr": 30, "step": 10, "sticker": 20, "storag": 17, "straighten": 50, "straighten_spinal_cord": 50, "string": 31, "structur": [10, 24], "stuck": 66, "student": 94, "style": 93, "subject": 24, "submit": [10, 38, 93], "suffix": 24, "suppli": 98, "switch": 38, "synchron": 30, "synthet": 3, "t": [38, 84], "tab": 66, "tag": 38, "talk": [20, 66], "tar": 30, "technic": [76, 77], "technician": 100, "tele": 97, "tensorboard": 17, "tensorflow": 37, "term": 17, "termin": [26, 63, 66], "terminologi": 53, "terra": 78, "test": [28, 93], "text": 30, "textmat": 66, "thi": [10, 84], "thin": 39, "time": [38, 81], "tip": [13, 29, 72, 83, 109], "titl": 93, "tmp": 30, "togeth": 81, "toner": 18, "tool": [36, 41, 51, 84], "toolbox": [71, 74], "toolchain": 70, "track": 38, "train": 17, "transfer": [12, 13], "transform": 41, "translat": 41, "transpar": 66, "trash": 66, "travel": [20, 108], "trick": [13, 72], "tristano": 15, "troubleshoot": [18, 27, 38, 39, 50, 66, 70], "tsv": 24, "tube": 98, "tunnel": 17, "tutori": [31, 38, 72], "two": 38, "u": 3, "ubuntu": 62, "ubuntu_1404": 62, "uncertainti": 3, "under": 83, "unf": [79, 106], "uniform": 40, "uninstal": 49, "univers": [20, 22], "universit\u00e9": 22, "up": 38, "updat": [27, 38], "upload": [27, 38], "upon": 66, "us": [12, 24, 38, 53, 57, 62, 66, 69, 70, 72, 73, 84, 106], "usag": [27, 38, 50, 58], "usb": 104, "useful_shortcuts_for_osx": 57, "user": [27, 30, 70], "using_guest_additions_recommend": 62, "util": 66, "v2": 100, "vagrant": 61, "vagrantfil": 61, "variabl": 13, "variou": [20, 51], "vectori": 109, "veri": [17, 100], "version": [37, 39, 93], "via": [30, 66], "view": 57, "viewer": 104, "vim": 30, "virtual": [60, 62, 72], "virtualbox": [25, 62], "virtualenvwrapp": 83, "visa": 99, "vision": 22, "visual": [41, 72], "vm": 62, "vnc": 15, "vnmrj": [15, 77], "volum": 54, "vpn": 15, "vtk": [69, 70], "walk": 97, "want": [66, 84], "warp": 41, "water": 104, "websit": 73, "week": 97, "wet": 98, "what": [10, 84], "when": [10, 66], "where": 10, "which": 38, "white": 28, "width": 57, "wifi": [81, 84], "wiki": 77, "wiki_7t_scanner_icm": 77, "window": 15, "wise": 3, "without": 35, "word": [57, 66], "work": [38, 93, 99], "write": 109, "written": 10, "x": 69, "xcode": 70, "xquartz": 63, "yosemit": 71, "yosemite_issu": 71, "you": 38, "your": 38, "youtub": 19, "zip": 30}}) \ No newline at end of file +Search.setIndex({"alltitles": {".bash_profile": [[31, "bash-profile"]], "1. Create a New Project": [[71, "create-a-new-project"]], "1H 140/184mm, 300MHz Quad Birdcage Coil ": [[78, "h-140-184mm-300mhz-quad-birdcage-coil"]], "1H 38/108mm, 300MHz Quad Birdcage Coil ": [[78, "h-38-108mm-300mhz-quad-birdcage-coil"]], "2. Edit Settings": [[71, "edit-settings"]], "205/120 HD Gradient Coil ": [[78, "id1"]], "3. Add Files": [[71, "add-files"]], "305/210 HD Gradient Coil ": [[78, "hd-gradient-coil"]], "3D Printer - Big Builder - Dual feed (RF lab)": [[101, "d-printer-big-builder-dual-feed-rf-lab"]], "3D Printing": [[101, "d-printing"]], "4. Set DYLD_LIBRARY_PATH": [[71, "set-dyld-library-path"]], "": [[24, "source-filename"]], "\u2601\ufe0f Microsoft 365": [[14, "microsoft-365"]], "\u2697\ufe0f Lab Manual": [[0, "lab-manual"]], "\u2708\ufe0f Conferences": [[20, "conferences"]], "\u270d\ufe0f Academic Writing": [[110, "academic-writing"]], "\ud83c\udde8\ud83c\udde6 Living in Montreal": [[97, "living-in-montreal"]], "\ud83c\udf0e VISAs and Work Permits": [[100, "visas-and-work-permits"]], "\ud83c\udf93 University Courses": [[22, "university-courses"]], "\ud83c\udfe5 Medical": [[98, "medical"]], "\ud83d\udc4b Onboarding": [[81, "onboarding"]], "\ud83d\udca1 Ideas for Cool Projects": [[75, "ideas-for-cool-projects"]], "\ud83d\udca1 Other configuration tips": [[84, "other-configuration-tips"]], "\ud83d\udcb0 Scholarships": [[109, "scholarships"]], "\ud83d\udcbb Shell Profile": [[87, "shell-profile"]], "\ud83d\udcbe Data": [[23, "data"]], "\ud83d\udcc5 Calendar & Meetings": [[1, "calendar-meetings"]], "\ud83d\udcce Practical Information": [[96, "practical-information"]], "\ud83d\udcd6 Comprehensive Exam": [[10, "comprehensive-exam"]], "\ud83d\udcda Bibliography": [[2, "bibliography"]], "\ud83d\udcde Contact": [[21, "contact"]], "\ud83d\udce7 Email": [[86, "email"]], "\ud83d\udcf6 Eduroam": [[85, "eduroam"]], "\ud83d\udd27 RF Lab": [[103, "rf-lab"]], "\ud83d\udda5 Compute Canada": [[13, "compute-canada"]], "\ud83d\udda5 Computers @CRIUGM": [[12, "computers-criugm"]], "\ud83d\udda5 Computers @NeuroPoly": [[15, "computers-neuropoly"]], "\ud83d\udda5 Computing Resources": [[11, "computing-resources"]], "\ud83d\udda8 Printer": [[18, "printer"]], "\ud83d\udde3 Slack": [[88, "slack"]], "\ud83d\udee0 Purchasing Supplies": [[99, "purchasing-supplies"]], "\ud83e\udd13 Geek tips": [[30, "geek-tips"]], "\ud83e\udde9 EDI": [[29, "edi"]], "\ud83e\uddf2 MRI Scanning": [[76, "mri-scanning"]], "AI and deep learning": [[95, "ai-and-deep-learning"]], "ANSI Escape Codes for Colours": [[32, "ansi-escape-codes-for-colours"]], "AWS": [[59, "aws"]], "Abstracts": [[20, "abstracts"]], "Access from stations": [[26, "access-from-stations"]], "Access to UNF": [[80, "access-to-unf"]], "Accessing Datasets (external volumes)": [[55, "accessing-datasets-external-volumes"]], "Account Creation": [[14, "account-creation"]], "Acknowledgements": [[110, "acknowledgements"]], "Acquisition": [[75, "acquisition"]], "Add LINUX machine to GRAMES ": [[84, "add-linux-machine-to-grames"]], "Add PolyMTL email to the macOS Mail app": [[86, "add-polymtl-email-to-the-macos-mail-app"]], "Add SSH key": [[39, "add-ssh-key"]], "Add tag": [[39, "add-tag"]], "Addressing Reviewer Comments": [[110, "addressing-reviewer-comments"]], "Admin": [[15, "admin"]], "Admin guide for data.neuro.polymtl.ca": [[27, "admin-guide-for-data-neuro-polymtl-ca"]], "Admission at Polytechnique": [[22, "admission-at-polytechnique"]], "Advanced Normalization Tools (ANTs)": [[42, "advanced-normalization-tools-ants"]], "Affiliation with Mila": [[82, "affiliation-with-mila"]], "Affiliations": [[110, "affiliations"]], "Affine-only point-match transformation": [[42, "affine-only-point-match-transformation"]], "Amending Commits": [[39, "amending-commits"]], "Anatomical Priors:": [[3, "anatomical-priors"]], "Anima": [[43, "anima"]], "Ants & c3d": [[66, "ants-c3d"]], "Archive Utility: Permanent loading": [[67, "archive-utility-permanent-loading"]], "Arrays": [[32, "arrays"]], "Arterial Spin Labeling (ASL)": [[6, "arterial-spin-labeling-asl"]], "Automatic Mount on Startup": [[66, "automatic-mount-on-startup"]], "Automator": [[67, "automator"]], "Awesome links": [[31, "awesome-links"]], "B0 Shimming": [[6, "b0-shimming"]], "B1 Shimming": [[6, "b1-shimming"]], "Backups": [[27, "backups"]], "Bash/Shell": [[31, "bash-shell"]], "Be prepared to use libraries": [[70, "be-prepared-to-use-libraries"]], "Biomedical": [[22, "biomedical"]], "BitBucket": [[53, "bitbucket"]], "Book a room": [[1, "book-a-room"]], "Book scanner": [[77, "book-scanner"]], "Book the scanner": [[79, "book-the-scanner"]], "Book the scanner and log in the google calendar": [[76, "book-the-scanner-and-log-in-the-google-calendar"]], "Booking the scanner": [[80, "booking-the-scanner"]], "Bookings": [[17, "bookings"]], "Booting Options": [[67, "booting-options"]], "Branch Conflicts": [[94, "branch-conflicts"]], "Branches": [[39, "branches"]], "Brother HL-3170CDW - Error: \u201clow toner\u201d ": [[18, "brother-hl-3170cdw-error-low-toner"]], "Build Docker container from Dockerfile ": [[54, "build-docker-container-from-dockerfile"]], "Build Phases": [[71, "build-phases"]], "Build Settings": [[71, "build-settings"]], "Building the derivatives datasets": [[24, "building-the-derivatives-datasets"]], "Building the raw dataset": [[24, "building-the-raw-dataset"]], "C++": [[69, "c"]], "CNC machine": [[104, "cnc-machine"]], "CNNs": [[3, "cnns"]], "COVID-19 Protocol": [[82, "covid-19-protocol"]], "CPU Clusters": [[12, "cpu-clusters"], [16, "cpu-clusters"]], "CPU/GPU Clusters": [[15, "cpu-gpu-clusters"]], "CSV Files": [[32, "csv-files"]], "CUDA": [[35, "cuda"]], "CUDA 7.5": [[35, "cuda-7-5"]], "Cables": [[99, "cables"]], "Calendar": [[1, "calendar"]], "Campus Access": [[82, "campus-access"]], "Campus Map": [[82, "campus-map"]], "Cannot repair permission": [[67, "cannot-repair-permission"]], "Cedar (CC)": [[13, "cedar-cc"]], "CentOS/Fedora/Red Hat": [[66, "centos-fedora-red-hat"]], "Change Folder Icon ": [[67, "change-folder-icon"]], "Change owner of a file": [[31, "change-owner-of-a-file"]], "Change permissions": [[31, "change-permissions"]], "Changelog policy": [[24, "changelog-policy"]], "Characteristics ": [[78, "characteristics"]], "Check Processes": [[31, "check-processes"]], "Check grammar": [[110, "check-grammar"]], "Check jobs": [[13, "check-jobs"]], "Check which branch you are currently working on": [[39, "check-which-branch-you-are-currently-working-on"]], "Checkout branch from fork": [[39, "checkout-branch-from-fork"]], "Checkout existing branch": [[39, "checkout-existing-branch"]], "Checkout specific tag or commit": [[39, "checkout-specific-tag-or-commit"]], "Checksum ": [[31, "checksum"]], "Chrome": [[67, "chrome"]], "Clinical": [[110, "clinical"]], "Clone specific branch": [[39, "clone-specific-branch"]], "Cloud Account": [[13, "cloud-account"]], "Code Style": [[94, "code-style"]], "Coils": [[77, "coils"]], "Coils ": [[78, "coils"]], "Colors": [[32, "colors"]], "Come back to previous commit (ignore the latest ones)": [[39, "come-back-to-previous-commit-ignore-the-latest-ones"]], "Command Line Input": [[32, "command-line-input"]], "Commit Sequences": [[94, "commit-sequences"]], "Commit Titles": [[94, "commit-titles"]], "Commit message convention": [[39, "commit-message-convention"]], "Commit: change message": [[39, "commit-change-message"]], "Commits": [[39, "commits"]], "Committing": [[94, "committing"]], "Compare commits/branches/tags": [[39, "compare-commits-branches-tags"]], "Compression/Extraction": [[31, "compression-extraction"]], "Computer Setup": [[83, "computer-setup"]], "Computer Vision": [[22, "computer-vision"]], "Computers": [[92, "computers"], [99, "computers"]], "Concordia (3T GE)": [[77, "concordia-3t-ge"]], "Conditional Random Fields (CRF)": [[34, "conditional-random-fields-crf"]], "Configure git": [[39, "configure-git"]], "Configure virtualenvwrapper under LINUX ": [[84, "configure-virtualenvwrapper-under-linux"]], "Connect to NeuroPoly Computers": [[15, "connect-to-neuropoly-computers"]], "Connect to Windows Servers": [[15, "connect-to-windows-servers"]], "Connect to the Polytechnique public disk": [[15, "connect-to-the-polytechnique-public-disk"]], "Connecting": [[17, "connecting"]], "Connecting from a wired connection on-campus": [[28, "connecting-from-a-wired-connection-on-campus"]], "Connecting from the command-line (cloning a repo)": [[28, "connecting-from-the-command-line-cloning-a-repo"]], "Connecting from wifi or off-campus": [[28, "connecting-from-wifi-or-off-campus"]], "Connection closed by remote host": [[39, "connection-closed-by-remote-host"]], "Connectors": [[99, "connectors"]], "Consultant": [[89, "consultant"]], "Consultants and RA": [[89, "consultants-and-ra"]], "Continual Learning": [[3, "continual-learning"]], "Continuous Integration": [[94, "continuous-integration"]], "Contribute to a project": [[39, "contribute-to-a-project"]], "Converting data to BIDS": [[24, "converting-data-to-bids"]], "Copy (and synchronize) with rsync": [[31, "copy-and-synchronize-with-rsync"]], "Copy file between computers": [[31, "copy-file-between-computers"]], "Copy file into container ": [[54, "copy-file-into-container"]], "Copy from a remote station": [[31, "copy-from-a-remote-station"]], "Copy from remote station via scp": [[31, "copy-from-remote-station-via-scp"]], "Copy/Make a disk image from CD/DVD (ISO format) ": [[67, "copy-make-a-disk-image-from-cd-dvd-iso-format"]], "Copying": [[31, "copying"], [31, "id2"]], "Courses and Tutorials": [[73, "courses-and-tutorials"]], "Courses:": [[39, "courses"]], "Cover letter": [[110, "cover-letter"]], "Create Account": [[13, "create-account"]], "Create Draft": [[20, "create-draft"]], "Create Job Script": [[12, "create-job-script"]], "Create a Virtual Machine (VM) with Debian ": [[63, "create-a-virtual-machine-vm-with-debian"]], "Create a branch": [[39, "create-a-branch"]], "Create a mesh out of a binary file ": [[48, "create-a-mesh-out-of-a-binary-file"]], "Create job script": [[13, "create-job-script"]], "Create recovery partition ": [[67, "create-recovery-partition"]], "Create repository inside repository": [[39, "create-repository-inside-repository"]], "Creating Containers": [[55, "creating-containers"]], "Creating a Script": [[32, "creating-a-script"]], "Creation of an XCode project linked with ITK and VTK": [[71, "creation-of-an-xcode-project-linked-with-itk-and-vtk"]], "Daily life": [[97, "daily-life"]], "Data": [[17, "data"], [92, "data"]], "Data Collection": [[78, "data-collection"]], "DataLad": [[59, "datalad"]], "Dataset curation": [[24, "dataset-curation"]], "Dates": [[32, "dates"]], "Deep Learning": [[3, "deep-learning"], [33, "deep-learning"], [75, "deep-learning"], [110, "deep-learning"]], "Deep Learning Applied to MRI": [[3, "deep-learning-applied-to-mri"]], "Deep Learning Applied to Medical Analysis": [[3, "deep-learning-applied-to-medical-analysis"]], "Deep Learning Resources": [[3, "deep-learning-resources"]], "Delete a bunch of files": [[31, "delete-a-bunch-of-files"]], "Delete non-empty folder": [[31, "delete-non-empty-folder"]], "Deleting": [[31, "deleting"]], "Derivative entities": [[24, "derivative-entities"]], "Derivative suffixes": [[24, "derivative-suffixes"]], "Derivatives extensions": [[24, "derivatives-extensions"]], "Derivatives structure": [[24, "derivatives-structure"]], "Desk/computer access": [[82, "desk-computer-access"]], "Developing Code": [[94, "developing-code"]], "Dialog box: select option with Tab ": [[67, "dialog-box-select-option-with-tab"]], "Diffusion MRI": [[6, "diffusion-mri"]], "Diffusion Simulator": [[44, "diffusion-simulator"]], "Disable Notification Center ": [[67, "disable-notification-center"]], "Discard local changes (if pull doesn\u2019t work)": [[39, "discard-local-changes-if-pull-doesn-t-work"]], "Displays": [[67, "displays"]], "Distilled Water": [[105, "distilled-water"]], "Distribution": [[71, "distribution"]], "Dock in 2d ": [[67, "dock-in-2d"]], "Docker": [[54, "docker"]], "Docker Environment ": [[55, "docker-environment"]], "Docker Terminology": [[54, "docker-terminology"]], "Docker for Deep Learning": [[55, "docker-for-deep-learning"]], "Doctorate (PhD)": [[109, "doctorate-phd"]], "Documentation ": [[37, "documentation"], [78, "documentation"]], "Documentation and Docstrings": [[94, "documentation-and-docstrings"]], "Documents to submit": [[10, "documents-to-submit"]], "Domain Adaptation for Medical Imaging:": [[3, "domain-adaptation-for-medical-imaging"]], "Domain Adaptation:": [[3, "domain-adaptation"]], "Download": [[39, "download"]], "Download OpenNeuro Dataset": [[59, "download-openneuro-dataset"]], "Download file from internet": [[31, "download-file-from-internet"]], "Download the data": [[79, "download-the-data"], [80, "download-the-data"]], "Dropbox": [[56, "dropbox"], [67, "dropbox"]], "ECTRIMS": [[20, "ectrims"]], "Emails": [[31, "emails"]], "Emergency": [[98, "emergency"]], "Environment Variables": [[13, "environment-variables"]], "Error: \u201cdisk quota exceeded\u201d": [[67, "error-disk-quota-exceeded"]], "Ethics": [[22, "ethics"]], "Example": [[42, "example"]], "Example:": [[41, "example"]], "Example: Building ITK 4.6.1 on Mac OSX 10.9.5": [[70, "example-building-itk-4-6-1-on-mac-osx-10-9-5"]], "Examples and use cases": [[24, "examples-and-use-cases"]], "Exposing Container Ports": [[55, "exposing-container-ports"]], "FOR Loop": [[32, "for-loop"]], "FSL": [[46, "fsl"], [66, "fsl"]], "FSL and FSLeyes": [[67, "fsl-and-fsleyes"]], "FSLeyes": [[47, "fsleyes"]], "Feature-wise Linear Modulation (FiLM)": [[3, "feature-wise-linear-modulation-film"]], "Few-shot Learning and Meta-Learning": [[3, "few-shot-learning-and-meta-learning"]], "Figures": [[72, "figures"]], "Figures (in vectorial format)": [[110, "figures-in-vectorial-format"]], "File/Folders": [[31, "file-folders"]], "Files and Folders": [[67, "files-and-folders"]], "Fill out the screening and consent forms": [[79, "fill-out-the-screening-and-consent-forms"]], "Filling MRI eligibility form": [[80, "filling-mri-eligibility-form"]], "Find a Family Doctor": [[98, "find-a-family-doctor"]], "Finder": [[67, "finder"]], "Finding": [[31, "finding"]], "Finding participants": [[80, "finding-participants"]], "Fix CUDA driver version ": [[38, "fix-cuda-driver-version"]], "Fix conflicts during rebasing": [[39, "fix-conflicts-during-rebasing"]], "Fix module tensorflow import error ": [[38, "fix-module-tensorflow-import-error"]], "Fixed Capacitors": [[99, "fixed-capacitors"]], "Fixing Installation Issues": [[70, "fixing-installation-issues"]], "Folder Settings ": [[62, "folder-settings"]], "Fork the repository": [[39, "fork-the-repository"]], "Frameworks/Libraries ": [[33, "frameworks-libraries"]], "FreeSurfer": [[45, "freesurfer"]], "Fundamentals": [[6, "fundamentals"]], "Fundamentals of neuroimaging analysis": [[7, "fundamentals-of-neuroimaging-analysis"]], "GANs": [[3, "gans"]], "GANs for Synthetic Medical Data": [[3, "gans-for-synthetic-medical-data"]], "GE": [[15, "ge"]], "GPU Clusters": [[17, "gpu-clusters"]], "GPU-Agnostic code": [[17, "gpu-agnostic-code"]], "Gaussian Filter": [[41, "gaussian-filter"]], "General": [[6, "general"], [67, "general"], [110, "general"]], "General usage": [[39, "general-usage"]], "Generate log file ": [[32, "generate-log-file"]], "Genmitsu 3018-PROVer": [[104, "genmitsu-3018-prover"]], "Gerber viewer for OSX": [[105, "gerber-viewer-for-osx"]], "Get Data": [[78, "get-data"]], "Get help": [[91, "get-help"]], "Getting Started": [[13, "getting-started"], [91, "getting-started"]], "Getting Started & Basic Commands ": [[62, "getting-started-basic-commands"]], "Getting changes from the server": [[28, "getting-changes-from-the-server"]], "Getting help": [[28, "getting-help"]], "Getting write access to a repository": [[28, "getting-write-access-to-a-repository"]], "Git & Github": [[39, "git-github"]], "Git software": [[39, "git-software"]], "GitHub": [[39, "github"]], "Global default config ": [[67, "global-default-config"]], "Global git config": [[40, "global-git-config"]], "Good Internship Projects (Public)": [[75, "good-internship-projects-public"]], "Good Training Habits": [[17, "good-training-habits"]], "Google Docs": [[110, "google-docs"]], "Google Drive": [[90, "google-drive"]], "Groups": [[15, "groups"]], "HDD parameters": [[31, "hdd-parameters"]], "HOW TO": [[39, "how-to"]], "Hardware": [[17, "hardware"]], "Harvard Implicit Association Test": [[29, "harvard-implicit-association-test"]], "Histology": [[4, "histology"], [75, "histology"]], "How to always open a page with \u201cpage width\u201d view ": [[58, "how-to-always-open-a-page-with-page-width-view"]], "How to design PCB for PCBWAY ": [[108, "how-to-design-pcb-for-pcbway"]], "How to design PCB for Poly-Grames": [[108, "how-to-design-pcb-for-poly-grames"]], "How to merge specific files from another branch": [[39, "how-to-merge-specific-files-from-another-branch"]], "How to use XCode toolchain as a non-admin user?": [[71, "how-to-use-xcode-toolchain-as-a-non-admin-user"]], "I heard that the WiFi is changing? Could this affect my access?": [[85, "i-heard-that-the-wifi-is-changing-could-this-affect-my-access"]], "IDE": [[73, "ide"]], "IEEE EMBS ISC": [[20, "ieee-embs-isc"]], "IF - AND": [[32, "if-and"]], "IF - OR": [[32, "if-or"]], "IF Statements": [[32, "if-statements"]], "ISBI": [[20, "isbi"]], "ISMRM": [[20, "ismrm"]], "ITK Transform File": [[42, "itk-transform-file"]], "ITK-SNAP": [[48, "itk-snap"]], "Ignore file mode": [[39, "ignore-file-mode"]], "Image Capture": [[67, "image-capture"]], "Image Processing": [[7, "image-processing"]], "Image Processing Software": [[41, "image-processing-software"]], "Import a .ova file ": [[63, "import-a-ova-file"]], "Informatics": [[95, "informatics"]], "Infrastructure": [[92, "infrastructure"]], "Initial setup": [[28, "initial-setup"]], "Install & Run Linux distribution ": [[54, "install-run-linux-distribution"]], "Install ITK": [[70, "install-itk"]], "Install VTK": [[70, "install-vtk"]], "Install git": [[39, "install-git"]], "Install guest additions ": [[63, "install-guest-additions"]], "Install tensorflow ": [[38, "install-tensorflow"]], "Installation": [[35, "installation"], [40, "installation"], [42, "installation"], [43, "installation"], [45, "installation"], [46, "installation"], [50, "installation"], [59, "installation"], [59, "id1"], [73, "installation"]], "Installation ": [[47, "installation"]], "Installation of VTK and ITK on Mac OS X": [[70, "installation-of-vtk-and-itk-on-mac-os-x"]], "Installed on each station (local)": [[15, "installed-on-each-station-local"]], "Installing ": [[62, "installing"]], "Installing VTK/ITK on Mac OSX 10.9": [[70, "installing-vtk-itk-on-mac-osx-10-9"]], "Instrumentation / RF Coils": [[22, "instrumentation-rf-coils"]], "Intensity Correction": [[41, "intensity-correction"]], "Inter-rater": [[3, "inter-rater"]], "Internal projects (Private)": [[75, "internal-projects-private"]], "Internet / Network": [[31, "internet-network"]], "Internships": [[100, "internships"]], "Introduction": [[47, "introduction"], [94, "introduction"]], "Isolating GPUs (without Docker) ": [[36, "isolating-gpus-without-docker"]], "Issue Body": [[94, "issue-body"]], "Issue Labels": [[94, "issue-labels"]], "Issue Title": [[94, "issue-title"]], "Issues": [[72, "issues"]], "JSON sidecars": [[24, "json-sidecars"]], "Jekyll": [[57, "jekyll"]], "Journals": [[110, "journals"]], "Keep your branch up-to-date": [[39, "keep-your-branch-up-to-date"]], "Keyboard": [[67, "keyboard"]], "Keynote": [[67, "keynote"]], "Kill job": [[13, "kill-job"]], "Killing Processes": [[31, "killing-processes"]], "Lab rooms at Polytechnique": [[82, "lab-rooms-at-polytechnique"]], "Label names": [[24, "label-names"]], "Language": [[15, "language"]], "Language Courses": [[22, "language-courses"]], "Launch fslview via double click": [[67, "launch-fslview-via-double-click"]], "Let Terminal Talk": [[67, "let-terminal-talk"]], "Licensing": [[94, "licensing"]], "Linux": [[35, "linux"], [66, "linux"]], "Linux stations": [[15, "linux-stations"]], "List local Docker images ": [[54, "list-local-docker-images"]], "List of Computers at NeuroPoly": [[15, "list-of-computers-at-neuropoly"]], "List of Conferences": [[20, "list-of-conferences"]], "List of Online Conferences From Various Universities": [[20, "list-of-online-conferences-from-various-universities"]], "List of Servers": [[13, "list-of-servers"]], "List remote branches": [[39, "list-remote-branches"]], "Listing the available datasets": [[28, "listing-the-available-datasets"]], "Locally": [[15, "locally"]], "Lock screen ": [[67, "lock-screen"]], "Lock screen upon sleep ": [[67, "lock-screen-upon-sleep"]], "Log Files": [[32, "log-files"]], "Logbook": [[76, "logbook"]], "Login": [[12, "login"]], "Long term, slow access (with backup)": [[17, "long-term-slow-access-with-backup"]], "Longitudinal MS Lesion Segmentation": [[3, "longitudinal-ms-lesion-segmentation"]], "Look for group owner & permission": [[31, "look-for-group-owner-permission"]], "MATLAB": [[67, "matlab"], [72, "matlab"]], "MHI (7T Agilent)": [[78, "mhi-7t-agilent"]], "MICCAI": [[20, "miccai"]], "MNI/McGill (7T Terra)": [[79, "mni-mcgill-7t-terra"]], "MR Spectroscopy": [[6, "mr-spectroscopy"]], "MRI": [[6, "mri"], [15, "mri"], [92, "mri"]], "MRI / Coils": [[110, "mri-coils"]], "MRI Analysis": [[7, "mri-analysis"]], "MRI Software": [[6, "mri-software"]], "MRI diagnosis": [[9, "mri-diagnosis"]], "MRI facilities": [[76, "mri-facilities"]], "MRI physics": [[95, "mri-physics"]], "MacOSX": [[67, "macosx"]], "Machine Learning / Statistics": [[22, "machine-learning-statistics"]], "Maintenance": [[67, "maintenance"]], "Make Hidden Applications Icons Transparent ": [[67, "make-hidden-applications-icons-transparent"]], "Making a pull request": [[28, "making-a-pull-request"]], "Mandatory Labels": [[94, "mandatory-labels"]], "Manual Segmentation of the Spinal Cord ": [[51, "manual-segmentation-of-the-spinal-cord"]], "Manual Segmentations": [[41, "manual-segmentations"]], "Manual method ": [[63, "manual-method"]], "Masters (MSc)": [[109, "masters-msc"]], "Matplotlib": [[73, "matplotlib"]], "McGill": [[22, "mcgill"], [22, "id8"], [22, "id11"], [22, "id13"]], "Mcgill": [[22, "id5"]], "Median Filter": [[41, "median-filter"]], "Medical imaging": [[22, "medical-imaging"], [95, "medical-imaging"]], "Meetings": [[1, "meetings"]], "Memory and CPU Settings ": [[62, "memory-and-cpu-settings"]], "Microsoft Word": [[58, "microsoft-word"], [67, "microsoft-word"]], "Mid-term, rapid access (no backup)": [[17, "mid-term-rapid-access-no-backup"]], "Miniconda": [[66, "miniconda"]], "Misc": [[15, "misc"], [32, "misc"], [36, "misc"], [67, "misc"], [105, "misc"]], "Miscellaneous": [[99, "miscellaneous"]], "MixUp": [[3, "mixup"]], "Modix Big-60 V2 - Dual feed (RF lab)": [[101, "modix-big-60-v2-dual-feed-rf-lab"]], "Modules": [[13, "modules"]], "Monitoring": [[17, "monitoring"]], "Monitoring GPUs": [[17, "monitoring-gpus"]], "Mount with GUI": [[26, "mount-with-gui"]], "Mount with Terminal": [[26, "mount-with-terminal"]], "Myelin Imaging": [[75, "myelin-imaging"]], "N3 - Non-parametric Non-uniform Intensity Normalization": [[41, "n3-non-parametric-non-uniform-intensity-normalization"]], "N4": [[41, "n4"]], "NIfTI": [[49, "nifti"]], "NVIDIA Docker": [[55, "nvidia-docker"]], "Network/DNS": [[31, "network-dns"]], "Neural ODEs:": [[3, "neural-odes"]], "NeuroImaging": [[73, "neuroimaging"]], "NeuroPoly Coils": [[106, "neuropoly-coils"]], "Neuroimaging": [[110, "neuroimaging"]], "New repo": [[40, "new-repo"]], "New repository": [[27, "new-repository"]], "Nice Packages": [[73, "nice-packages"]], "Nice Software": [[67, "nice-software"]], "Non-affine point-match transformation": [[42, "non-affine-point-match-transformation"]], "Non-magnetic connectors": [[105, "non-magnetic-connectors"]], "Notifications": [[67, "notifications"]], "Number of files ": [[31, "number-of-files"]], "OHBM": [[20, "ohbm"]], "OS Guides": [[65, "os-guides"]], "OctoPrint": [[102, "octoprint"]], "OctoPrint Plugins": [[102, "octoprint-plugins"]], "OneDrive": [[14, "onedrive"]], "Online Courses\u200b ": [[34, "online-courses"]], "OpenNeuro": [[59, "openneuro"]], "OpenNeuro CLI": [[50, "openneuro-cli"]], "Opening a Branch": [[94, "opening-a-branch"]], "Opening an Issue on GitHub": [[94, "opening-an-issue-on-github"]], "Opening an issue": [[28, "opening-an-issue"]], "Optional (Recommended) Labels": [[94, "optional-recommended-labels"]], "Oral Exam/Presentation": [[10, "oral-exam-presentation"]], "Organizing Folders": [[110, "organizing-folders"]], "OsiriX": [[51, "osirix"]], "Other Links ": [[100, "other-links"]], "Other resources:": [[39, "other-resources"]], "Out of Distribution (OOD)": [[3, "out-of-distribution-ood"]], "Overleaf": [[110, "overleaf"]], "Overview": [[59, "overview"], [85, "overview"]], "PCB": [[99, "pcb"]], "PCB Manufacturing": [[108, "pcb-manufacturing"]], "PR Body": [[94, "pr-body"]], "PR Labels": [[94, "pr-labels"]], "PR Title": [[94, "pr-title"]], "Packaging Code": [[73, "packaging-code"]], "Paperpile": [[110, "paperpile"]], "Paperpile Folder": [[8, "paperpile-folder"]], "Papers": [[67, "papers"]], "Papers ": [[34, "papers"]], "Parameters for antsRegistration": [[42, "parameters-for-antsregistration"]], "Parse CSV File": [[32, "parse-csv-file"]], "Parts manufacturing": [[105, "parts-manufacturing"]], "Password": [[15, "password"]], "Password prompts: \u201cFinder wants to make changes\u201d": [[67, "password-prompts-finder-wants-to-make-changes"]], "Pathophysiology": [[9, "pathophysiology"]], "Pay a participant?": [[76, "pay-a-participant"]], "Permissions": [[31, "permissions"]], "Phantoms": [[99, "phantoms"], [107, "phantoms"]], "Physics Informed Deep Learning:": [[3, "physics-informed-deep-learning"]], "Pipe Connectors": [[99, "pipe-connectors"]], "Planning Travel": [[20, "planning-travel"]], "Please advise one of the PIs before arriving for the first time on campus in order to organize the logistics together.": [[82, "please-advise-one-of-the-pis-before-arriving-for-the-first-time-on-campus-in-order-to-organize-the-logistics-together"]], "Plugins": [[47, "plugins"]], "Point-Set Expectation (PSE)": [[42, "point-set-expectation-pse"]], "Polytechnique Montr\u00e9al": [[22, "polytechnique-montreal"], [22, "id3"], [22, "id6"], [22, "id9"], [22, "id10"], [22, "id12"]], "Port Papers to another mac": [[67, "port-papers-to-another-mac"]], "Postdocs": [[100, "postdocs"]], "Postdoctoral Association": [[93, "postdoctoral-association"]], "Postdoctoral Office": [[93, "postdoctoral-office"]], "Postdoctoral fellows": [[93, "postdoctoral-fellows"]], "Postdoctorate": [[109, "postdoctorate"]], "Poster Tube": [[99, "poster-tube"]], "Posters": [[20, "posters"]], "Preview": [[67, "preview"]], "Private walk-in (incl. week-end)": [[98, "private-walk-in-incl-week-end"]], "Processes": [[31, "processes"]], "Programming": [[15, "programming"]], "Programming & Software": [[22, "programming-software"]], "Programming Languages": [[68, "programming-languages"]], "Project-Specific Guidance": [[94, "project-specific-guidance"]], "Public Walk-in public (incl. week-end)": [[98, "public-walk-in-public-incl-week-end"]], "Pulse Sequence Programming": [[75, "pulse-sequence-programming"]], "Pulse Sequences": [[6, "pulse-sequences"]], "Push to remote": [[39, "push-to-remote"]], "Pycharm": [[39, "pycharm"]], "Python": [[13, "python"], [73, "python"]], "Quality Control (QC)": [[6, "quality-control-qc"]], "QuickLook": [[67, "quicklook"]], "README.md": [[24, "readme-md"]], "RF Coil": [[75, "rf-coil"]], "RF Coils": [[6, "rf-coils"]], "RF Lab": [[99, "rf-lab"]], "Raw entities": [[24, "raw-entities"]], "Raw extensions": [[24, "raw-extensions"]], "Raw structure": [[24, "raw-structure"]], "Raw suffixes": [[24, "raw-suffixes"]], "Reboot station with Terminal ": [[67, "reboot-station-with-terminal"]], "Recipe from LIOM (used at ICM)": [[107, "recipe-from-liom-used-at-icm"]], "Recipe from Nibardo": [[107, "recipe-from-nibardo"]], "Recipe from UNF": [[107, "recipe-from-unf"]], "Recommendations ": [[44, "recommendations"]], "Reconstruct raw data": [[80, "reconstruct-raw-data"]], "Recover lost commits after rebase": [[39, "recover-lost-commits-after-rebase"]], "Recovery": [[67, "recovery"]], "Recovery Shortcut": [[27, "recovery-shortcut"]], "Reduce the size of the VM ": [[63, "reduce-the-size-of-the-vm"]], "Reference": [[35, "reference"]], "Reference ": [[38, "reference"]], "Reference manager": [[110, "reference-manager"]], "References": [[14, "references"]], "Reimbursement": [[20, "reimbursement"]], "Reimbursements": [[99, "reimbursements"]], "Releases": [[27, "releases"]], "Remove Docker image or containers (force deletion) ": [[54, "remove-docker-image-or-containers-force-deletion"]], "Remove Tag": [[39, "remove-tag"]], "Remove a branch": [[39, "remove-a-branch"]], "Remove files from tmp ": [[31, "remove-files-from-tmp"]], "Rename files with a given extension": [[31, "rename-files-with-a-given-extension"]], "Renaming": [[31, "renaming"]], "Requirements for Polytechnique": [[22, "requirements-for-polytechnique"]], "Requirements for room access": [[82, "requirements-for-room-access"]], "Research Associates": [[89, "research-associates"]], "Reset Commit": [[39, "reset-commit"]], "Reset your branch (revert your local commits)": [[39, "reset-your-branch-revert-your-local-commits"]], "Resetting": [[40, "resetting"]], "Resources": [[4, "resources"], [72, "resources"], [73, "resources"]], "Restrict Gradient Deformation": [[42, "restrict-gradient-deformation"]], "Restricted Boltzmann Machines (RBM)": [[37, "restricted-boltzmann-machines-rbm"]], "Retrieve an old backup": [[15, "retrieve-an-old-backup"]], "Reviewers": [[94, "reviewers"]], "Right-click sharing for Google Drive": [[67, "right-click-sharing-for-google-drive"]], "Rods": [[99, "rods"]], "Rollbacks": [[39, "rollbacks"]], "Run Docker image ": [[54, "run-docker-image"]], "Run with DISPLAY redirection ": [[54, "run-with-display-redirection"]], "Running MacOS ": [[62, "running-macos"]], "Running Remotely": [[47, "running-remotely"]], "SFTP (Mount a remote station)": [[15, "sftp-mount-a-remote-station"]], "SSH": [[64, "ssh"]], "SSH (command line)": [[15, "ssh-command-line"]], "SSH Public Key": [[31, "ssh-public-key"]], "SSH into Box ": [[62, "ssh-into-box"]], "SSH tunnelling": [[17, "ssh-tunnelling"]], "Save a Docker image ": [[54, "save-a-docker-image"]], "Scheduled reboots": [[15, "scheduled-reboots"]], "Sci-Kit Learn Tools ": [[37, "sci-kit-learn-tools"]], "Screen (for background processes)": [[31, "screen-for-background-processes"]], "Screenshot in desired format ": [[67, "screenshot-in-desired-format"]], "Script": [[32, "script"]], "Search file name": [[39, "search-file-name"]], "Search for remote image": [[54, "search-for-remote-image"]], "Segmentation": [[9, "segmentation"]], "Select default branches for pushing": [[39, "select-default-branches-for-pushing"]], "Servers": [[67, "servers"]], "Services": [[74, "services"]], "Set The Expanded Print Dialogue As Default ": [[67, "set-the-expanded-print-dialogue-as-default"]], "Set The Expanded Save Dialogue As Default ": [[67, "set-the-expanded-save-dialogue-as-default"]], "Setup": [[85, "setup"]], "Share with Authors": [[20, "share-with-authors"]], "Shared folder ": [[63, "shared-folder"]], "Sharing Data": [[14, "sharing-data"]], "Shimming": [[75, "shimming"]], "Short-term, very rapid access (no backup)": [[17, "short-term-very-rapid-access-no-backup"]], "Show changed files between two commits": [[39, "show-changed-files-between-two-commits"]], "Simulators": [[75, "simulators"]], "Size of folder": [[31, "size-of-folder"]], "Sketchup": [[60, "sketchup"]], "Small 3D printer (in Frederic Lesage\u2019s lab)": [[101, "small-3d-printer-in-frederic-lesage-s-lab"]], "Smoothing": [[41, "smoothing"]], "Software": [[17, "software"], [74, "software"]], "Software Installed": [[15, "software-installed"]], "Software development": [[94, "software-development"]], "Software-specific": [[67, "software-specific"]], "Solution 1": [[67, "solution-1"], [67, "id1"]], "Solution 2": [[67, "solution-2"], [67, "id2"]], "Solution 3": [[67, "solution-3"]], "SourceTree": [[39, "sourcetree"]], "Spinal Cord Injury": [[9, "spinal-cord-injury"]], "Spinal Cord Segmentation on MRI Data": [[3, "spinal-cord-segmentation-on-mri-data"]], "Spinal Cord Toolbox": [[75, "spinal-cord-toolbox"]], "Standard Operating Procedure - Reconstructing RAW data MHI-7T": [[78, "standard-operating-procedure-reconstructing-raw-data-mhi-7t"]], "Startup/Provision Settings ": [[62, "startup-provision-settings"]], "Stdout / Stderr ": [[31, "stdout-stderr"]], "Stickers": [[20, "stickers"]], "Storage": [[17, "storage"]], "Straighten Spinal Cord ": [[51, "straighten-spinal-cord"]], "Strings": [[32, "strings"]], "Students and Interns": [[95, "students-and-interns"]], "Subject naming convention": [[24, "subject-naming-convention"]], "Submit a pull request": [[39, "submit-a-pull-request"]], "Submitting a Pull Request (PR)": [[94, "submitting-a-pull-request-pr"]], "Switch local repository to another branch": [[39, "switch-local-repository-to-another-branch"]], "Switch to another branch": [[39, "switch-to-another-branch"]], "Tags": [[39, "tags"]], "Talk": [[20, "talk"]], "Technical Specifications": [[77, "technical-specifications"], [78, "technical-specifications"]], "Tele-medicine": [[98, "tele-medicine"]], "Tensorboard": [[17, "tensorboard"]], "Tensorflow": [[38, "tensorflow"]], "Terminal": [[67, "terminal"]], "Testing": [[94, "testing"]], "TextMate": [[67, "textmate"]], "The Research Proposal": [[10, "the-research-proposal"]], "Theses": [[5, "theses"]], "Tips and Tricks": [[13, "tips-and-tricks"], [73, "tips-and-tricks"]], "Tips for writing scientific articles": [[110, "tips-for-writing-scientific-articles"]], "Toolbox ": [[72, "toolbox"]], "Track remote branch": [[39, "track-remote-branch"]], "Transfer Files": [[13, "transfer-files"]], "Transferring Data from JACARANDA": [[12, "transferring-data-from-jacaranda"]], "Translation": [[42, "translation"]], "Trash: Stuck when being emptied": [[67, "trash-stuck-when-being-emptied"]], "Travel awards": [[109, "travel-awards"]], "Troubleshooting": [[18, "troubleshooting"], [27, "troubleshooting"], [39, "troubleshooting"], [40, "troubleshooting"], [51, "troubleshooting"], [67, "troubleshooting"], [71, "troubleshooting"]], "Tutorials & Courses": [[39, "tutorials-courses"]], "Tutorials/Links": [[32, "tutorials-links"]], "Tutorials:": [[39, "tutorials"]], "U-Net": [[3, "u-net"]], "UNF (3T Prisma)": [[80, "unf-3t-prisma"]], "USB to Serial adapter for spine shim coil (OSX El Capitan)": [[105, "usb-to-serial-adapter-for-spine-shim-coil-osx-el-capitan"]], "Ubuntu 14.04 ": [[63, "ubuntu-14-04"]], "Uncertainty": [[3, "uncertainty"]], "Uninstall": [[50, "uninstall"]], "Universit\u00e9 de Montr\u00e9al": [[22, "universite-de-montreal"], [22, "id4"], [22, "id7"]], "Update your branch": [[39, "update-your-branch"]], "Upload": [[39, "upload"]], "Upload local repository for the first time": [[39, "upload-local-repository-for-the-first-time"]], "Usage": [[51, "usage"], [59, "usage"]], "Use a service": [[67, "use-a-service"]], "Useful Links": [[107, "useful-links"]], "Useful Packages": [[73, "useful-packages"]], "Useful aliases": [[39, "useful-aliases"]], "Useful links/Software": [[74, "useful-links-software"]], "Useful shortcuts for OSX ": [[58, "useful-shortcuts-for-osx"]], "Using Docker": [[54, "using-docker"]], "Using Guest Additions (recommended) ": [[63, "using-guest-additions-recommended"]], "Using JACARANDA and ELM": [[12, "using-jacaranda-and-elm"]], "Using XCode": [[71, "using-xcode"]], "VIM Text Editor": [[31, "vim-text-editor"]], "VNC (graphical interface)": [[15, "vnc-graphical-interface"]], "VPN": [[15, "vpn"]], "Vagrant": [[62, "vagrant"]], "Vagrantfile ": [[62, "vagrantfile"]], "Various Software & Tools": [[52, "various-software-tools"]], "Versioning": [[94, "versioning"]], "Very small 3D printer (in technician\u2019s office)": [[101, "very-small-3d-printer-in-technician-s-office"]], "Virtual Environments": [[73, "virtual-environments"]], "Virtual Machines": [[61, "virtual-machines"]], "VirtualBox": [[25, "virtualbox"], [63, "virtualbox"]], "Visualization": [[73, "visualization"]], "Visualizing Warping Field": [[42, "visualizing-warping-field"]], "VnmrJ Station Credentials": [[78, "vnmrj-station-credentials"]], "Walk-in": [[98, "walk-in"]], "Websites": [[74, "websites"]], "Wet Lab": [[99, "wet-lab"]], "What if I don\u2019t want to use the closed-source tool?": [[85, "what-if-i-don-t-want-to-use-the-closed-source-tool"]], "What is the first step/Where do I start?": [[10, "what-is-the-first-step-where-do-i-start"]], "What is the structure of the exam?": [[10, "what-is-the-structure-of-the-exam"]], "When to give this exam?": [[10, "when-to-give-this-exam"]], "White Papers": [[29, "white-papers"]], "WiFi Access: Eduroam": [[82, "wifi-access-eduroam"]], "Wiki 7T Scanner ICM ": [[78, "wiki-7t-scanner-icm"]], "Work in Progress": [[94, "work-in-progress"]], "Working on \u201cEpic\u201d Changes": [[94, "working-on-epic-changes"]], "Writing Platforms": [[110, "writing-platforms"]], "Written Exam": [[10, "written-exam"]], "XQuartz": [[64, "xquartz"]], "XQuartz Terminal": [[64, "xquartz-terminal"]], "Yosemite Issue ": [[72, "yosemite-issue"]], "YouTube Procedure": [[19, "youtube-procedure"]], "abbey": [[15, "abbey"], [16, "abbey"]], "annex.thin Hardlinks ": [[40, "annex-thin-hardlinks"]], "bireli": [[15, "bireli"]], "checking annex file locations": [[40, "checking-annex-file-locations"]], "code/": [[24, "code"]], "convergence": [[42, "convergence"]], "data.neuro.polymtl.ca": [[28, "data-neuro-polymtl-ca"]], "dataset_description.json": [[24, "dataset-description-json"]], "derivatives/labels/dataset_description.json": [[24, "derivatives-labels-dataset-description-json"]], "derivatives/labels/descriptions.tsv": [[24, "derivatives-labels-descriptions-tsv"]], "display log": [[67, "display-log"]], "django": [[25, "django"]], "duke": [[26, "duke"]], "fitzgerald": [[15, "fitzgerald"]], "fslview opening out of screen": [[67, "fslview-opening-out-of-screen"]], "generate dwi_mean in same folder": [[67, "generate-dwi-mean-in-same-folder"]], "git-annex": [[40, "git-annex"]], "gpg": [[39, "gpg"]], "idea3t": [[15, "idea3t"]], "idea7t": [[15, "idea7t"]], "joplin": [[15, "joplin"], [16, "joplin"]], "kill a process based on PID": [[31, "kill-a-process-based-on-pid"]], "kill a process from a user": [[31, "kill-a-process-from-a-user"]], "mds_stores using high CPU load": [[67, "mds-stores-using-high-cpu-load"]], "metric": [[42, "metric"]], "niftiviewer.app (MacOS) ": [[84, "niftiviewer-app-macos"]], "node006 (Poly-Grames)": [[15, "node006-poly-grames"]], "node007 (Poly-Grames)": [[15, "node007-poly-grames"]], "participants.json": [[24, "participants-json"]], "participants.tsv": [[24, "participants-tsv"]], "peterson": [[15, "peterson"]], "port 22: Connection refused": [[39, "port-22-connection-refused"]], "rm: cannot remove": [[40, "rm-cannot-remove"]], "romane": [[15, "romane"]], "rosenberg": [[15, "rosenberg"]], "smoothing-sigmas": [[42, "smoothing-sigmas"]], "tar": [[31, "tar"]], "transform": [[42, "transform"]], "tristano": [[15, "tristano"]], "version problems": [[40, "version-problems"]], "vnmrj": [[15, "vnmrj"]], "zip": [[31, "zip"]], "\u200bEthics": [[76, "ethics"]], "\u201ca cosmetic problem affecting git status\u201d": [[40, "a-cosmetic-problem-affecting-git-status"]], "\u2708\ufe0f Flights": [[97, "flights"]], "\ud83c\udfe0 Accommodation": [[97, "accommodation"]]}, "docnames": ["README", "agenda-and-calendar", "bibliography/README", "bibliography/deep-learning", "bibliography/histology", "bibliography/lab-theses", "bibliography/mri", "bibliography/mri-analysis", "bibliography/shared-paperpile-folder", "bibliography/spinal-cord-injury", "comprehensive-exam-guide", "computing-resources/README", "computing-resources/clusters-at-criugm", "computing-resources/compute-canada", "computing-resources/microsoft365", "computing-resources/neuropoly/README", "computing-resources/neuropoly/cpus", "computing-resources/neuropoly/gpus", "computing-resources/printer", "computing-resources/youtube", "conferences", "contact", "courses", "data/README", "data/dataset-curation", "data/django", "data/duke", "data/git-annex-admin", "data/git-datasets", "edi", "geek-tips/README", "geek-tips/bash-shell/README", "geek-tips/bash-shell/script", "geek-tips/deep-learning/README", "geek-tips/deep-learning/conditional-random-fields-crf", "geek-tips/deep-learning/cuda", "geek-tips/deep-learning/misc", "geek-tips/deep-learning/restricted-boltzmann-machines", "geek-tips/deep-learning/tensorflow", "geek-tips/git", "geek-tips/git-annex", "geek-tips/image-processing-software/README", "geek-tips/image-processing-software/advanced-normalization-tools-ants", "geek-tips/image-processing-software/anima", "geek-tips/image-processing-software/diffusion-simulator", "geek-tips/image-processing-software/freesurfer", "geek-tips/image-processing-software/fsl/README", "geek-tips/image-processing-software/fsl/fsleyes", "geek-tips/image-processing-software/itk-snap", "geek-tips/image-processing-software/nifti", "geek-tips/image-processing-software/openneuro-cli", "geek-tips/image-processing-software/osirix", "geek-tips/misc/README", "geek-tips/misc/bitbucket", "geek-tips/misc/docker/README", "geek-tips/misc/docker/docker-for-deep-learning", "geek-tips/misc/dropbox", "geek-tips/misc/jekyll", "geek-tips/misc/microsoft-word", "geek-tips/misc/openneuro", "geek-tips/misc/sketchup", "geek-tips/misc/virtual-machines/README", "geek-tips/misc/virtual-machines/vagrant", "geek-tips/misc/virtual-machines/virtualbox", "geek-tips/misc/xquartz", "geek-tips/os-guides/README", "geek-tips/os-guides/linux", "geek-tips/os-guides/macosx", "geek-tips/programming-languages/README", "geek-tips/programming-languages/c++/README", "geek-tips/programming-languages/c++/installation-of-vtk-and-itk-on-mac-os-x", "geek-tips/programming-languages/c++/using-xcode", "geek-tips/programming-languages/matlab", "geek-tips/programming-languages/python", "geek-tips/useful-links", "ideas-for-cool-projects", "mri-scanning/README", "mri-scanning/concordia-ge", "mri-scanning/mhi-7t-agilent", "mri-scanning/mni-mcgill-7t-terra", "mri-scanning/unf-3t-prisma", "onboarding/README", "onboarding/campus-access", "onboarding/computer-setup/README", "onboarding/computer-setup/configuration-tips", "onboarding/computer-setup/eduroam", "onboarding/computer-setup/mail", "onboarding/computer-setup/shell-profile", "onboarding/computer-setup/slack", "onboarding/consultants-ra", "onboarding/dropbox-google-drive", "onboarding/getting-started", "onboarding/infrastructure", "onboarding/postdoc", "onboarding/software-development", "onboarding/students-interns", "practical-information/README", "practical-information/living-in-montreal", "practical-information/medical", "practical-information/purchasing-hardware-and-lab-supplies", "practical-information/visa", "rf-lab/3d-printing/README", "rf-lab/3d-printing/octoprint", "rf-lab/README", "rf-lab/cnc-machine", "rf-lab/misc", "rf-lab/mri-coils-at-neuropoly", "rf-lab/mri-phantoms", "rf-lab/pcb-manufacturing", "scholarships", "writing-articles"], "envversion": {"sphinx": 61, "sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2}, "filenames": ["README.md", "agenda-and-calendar.md", "bibliography/README.md", "bibliography/deep-learning.md", "bibliography/histology.md", "bibliography/lab-theses.md", "bibliography/mri.md", "bibliography/mri-analysis.md", "bibliography/shared-paperpile-folder.md", "bibliography/spinal-cord-injury.md", "comprehensive-exam-guide.md", "computing-resources/README.md", "computing-resources/clusters-at-criugm.md", "computing-resources/compute-canada.md", "computing-resources/microsoft365.md", "computing-resources/neuropoly/README.md", "computing-resources/neuropoly/cpus.md", "computing-resources/neuropoly/gpus.md", "computing-resources/printer.md", "computing-resources/youtube.md", "conferences.md", "contact.md", "courses.md", "data/README.md", "data/dataset-curation.md", "data/django.md", "data/duke.md", "data/git-annex-admin.md", "data/git-datasets.md", "edi.md", "geek-tips/README.md", "geek-tips/bash-shell/README.md", "geek-tips/bash-shell/script.md", "geek-tips/deep-learning/README.md", "geek-tips/deep-learning/conditional-random-fields-crf.md", "geek-tips/deep-learning/cuda.md", "geek-tips/deep-learning/misc.md", "geek-tips/deep-learning/restricted-boltzmann-machines.md", "geek-tips/deep-learning/tensorflow.md", "geek-tips/git.md", "geek-tips/git-annex.md", "geek-tips/image-processing-software/README.md", "geek-tips/image-processing-software/advanced-normalization-tools-ants.md", "geek-tips/image-processing-software/anima.md", "geek-tips/image-processing-software/diffusion-simulator.md", "geek-tips/image-processing-software/freesurfer.md", "geek-tips/image-processing-software/fsl/README.md", "geek-tips/image-processing-software/fsl/fsleyes.md", "geek-tips/image-processing-software/itk-snap.md", "geek-tips/image-processing-software/nifti.md", "geek-tips/image-processing-software/openneuro-cli.md", "geek-tips/image-processing-software/osirix.md", "geek-tips/misc/README.md", "geek-tips/misc/bitbucket.md", "geek-tips/misc/docker/README.md", "geek-tips/misc/docker/docker-for-deep-learning.md", "geek-tips/misc/dropbox.md", "geek-tips/misc/jekyll.md", "geek-tips/misc/microsoft-word.md", "geek-tips/misc/openneuro.md", "geek-tips/misc/sketchup.md", "geek-tips/misc/virtual-machines/README.md", "geek-tips/misc/virtual-machines/vagrant.md", "geek-tips/misc/virtual-machines/virtualbox.md", "geek-tips/misc/xquartz.md", "geek-tips/os-guides/README.md", "geek-tips/os-guides/linux.md", "geek-tips/os-guides/macosx.md", "geek-tips/programming-languages/README.md", "geek-tips/programming-languages/c++/README.md", "geek-tips/programming-languages/c++/installation-of-vtk-and-itk-on-mac-os-x.md", "geek-tips/programming-languages/c++/using-xcode.md", "geek-tips/programming-languages/matlab.md", "geek-tips/programming-languages/python.md", "geek-tips/useful-links.md", "ideas-for-cool-projects.md", "mri-scanning/README.md", "mri-scanning/concordia-ge.md", "mri-scanning/mhi-7t-agilent.md", "mri-scanning/mni-mcgill-7t-terra.md", "mri-scanning/unf-3t-prisma.md", "onboarding/README.md", "onboarding/campus-access.md", "onboarding/computer-setup/README.md", "onboarding/computer-setup/configuration-tips.md", "onboarding/computer-setup/eduroam.md", "onboarding/computer-setup/mail.md", "onboarding/computer-setup/shell-profile.md", "onboarding/computer-setup/slack.md", "onboarding/consultants-ra.md", "onboarding/dropbox-google-drive.md", "onboarding/getting-started.md", "onboarding/infrastructure.md", "onboarding/postdoc.md", "onboarding/software-development.md", "onboarding/students-interns.md", "practical-information/README.md", "practical-information/living-in-montreal.md", "practical-information/medical.md", "practical-information/purchasing-hardware-and-lab-supplies.md", "practical-information/visa.md", "rf-lab/3d-printing/README.md", "rf-lab/3d-printing/octoprint.md", "rf-lab/README.md", "rf-lab/cnc-machine.md", "rf-lab/misc.md", "rf-lab/mri-coils-at-neuropoly.md", "rf-lab/mri-phantoms.md", "rf-lab/pcb-manufacturing.md", "scholarships.md", "writing-articles.md"], "indexentries": {}, "objects": {}, "objnames": {}, "objtypes": {}, "terms": {"": [1, 3, 6, 9, 10, 13, 14, 15, 17, 19, 20, 24, 25, 27, 28, 31, 32, 36, 37, 39, 40, 41, 42, 51, 53, 63, 67, 70, 71, 75, 76, 79, 82, 85, 87, 90, 94, 99, 110], "0": [13, 17, 24, 31, 32, 35, 36, 38, 40, 42, 44, 51, 54, 55, 63, 66, 70, 71, 72, 87, 94, 99, 102, 107, 110], "00": [13, 15, 17, 27, 40], "000": 44, "0000": 17, "00000000": 17, "0000000000000000": 17, "00000000fee09000": 17, "00000000fee0a000": 17, "00000000fee1d000": 17, "00000000fee24000": 17, "0001": 17, "000182": 17, "000461": 17, "000w": 17, "001": 24, "00179": 110, "001_acq": 24, "001_flip": 24, "001_unit1_desc": 24, "002": 24, "0023": 17, "003": 24, "005": [24, 42], "007": 24, "01": [17, 107], "010": 24, "02": [3, 27, 63, 70], "023": 24, "024": 17, "02_acq": 24, "03": [13, 17, 20], "031": 105, "0312": 17, "033": 32, "03g": 32, "04": [15, 17, 20, 27, 35, 40, 54, 55, 66, 67], "0400": 40, "042005": 99, "049703": 42, "04lt": 38, "05": [17, 20, 63], "0500": 27, "06": [3, 17, 27, 40], "06035": 99, "06038": 99, "0644": 40, "07": [20, 24], "07244": 110, "0781": 17, "08": 20, "09": [17, 20, 43], "09412": 3, "0a": 17, "0avgdata": 17, "0avgtext": 17, "0b2": 38, "0bin": 31, "0ee2b5d73xfpz2gvp81z": 99, "0input": 17, "0m": 32, "0ma": 17, "0major": 17, "0n": 17, "0output": 17, "0swap": 17, "0t": 77, "0u": 17, "0ubuntu0": 17, "0x0": 42, "0x0x5vox": 41, "1": [6, 10, 13, 17, 20, 22, 24, 27, 31, 32, 35, 39, 40, 41, 42, 44, 49, 51, 54, 66, 72, 73, 75, 78, 87, 94, 99, 102, 107, 109, 110], "10": [3, 6, 9, 15, 17, 20, 24, 26, 31, 35, 40, 63, 67, 87, 94, 105, 110], "100": [17, 24, 31, 42, 67, 72, 75, 99], "1000": [20, 63, 78], "10000": [40, 51], "100000": 42, "10000x10000x10000": 42, "1000ml": 107, "1001": 40, "1002": 6, "1007": 3, "100mb": 31, "100n": 17, "100x10x5": 42, "102": 6, "1023": 13, "10235mib": 17, "1024": 13, "10243mib": 17, "10245mib": 17, "1024m": 13, "10253mib": 17, "103": 17, "104": 17, "105": 17, "106": 17, "107": 17, "108": 78, "10bittagcomp": 17, "10bittagreq": 17, "10de": 17, "10gb": 13, "10ghz": 15, "10mib": 17, "10u": 17, "11": [1, 17, 20, 26, 27, 35, 40, 42, 70, 110], "110": 17, "111": 73, "1111789minor": 17, "1123": 9, "114": [17, 78], "1140317": 40, "1140317_t1w_seg": 40, "115": 17, "1160": 107, "117": 17, "11782": 9, "1179": 90, "1198440minor": 17, "11user": 17, "12": [6, 9, 15, 16, 17, 27, 35, 38, 50, 78, 99, 110], "120": [1, 100], "12288": 26, "123": 39, "1232": 6, "124": 98, "1250": 17, "127": [17, 54], "128": 17, "128bitca": 17, "128mb": 17, "12gb": 15, "13": [13, 17, 20, 24, 26, 35], "131": 17, "1319996": 40, "132": [101, 108], "1328": 17, "135": 78, "13684mib": 17, "139": 17, "14": [17, 20, 24, 26, 35, 38, 40, 44, 55, 66, 72, 78], "140": 1, "144": 1, "1445": 17, "148": 17, "15": [1, 6, 17, 20, 27, 35, 40, 63], "150": [17, 32, 75], "150g": 78, "151": 17, "152": 17, "153": 17, "1532": 17, "154": 101, "1562": 17, "157": 17, "159": 78, "15tb": 26, "16": [1, 6, 13, 15, 17, 20, 26, 35, 40, 44, 51, 54, 55, 78, 99], "160": 17, "1600x1200": 15, "161": 17, "161873978": 40, "16280mib": 17, "16364": 99, "165": 78, "1657": 79, "16gb": [15, 17], "16gt": 17, "16k": 17, "16m": 17, "16mb": 17, "16w": 17, "16x": 15, "17": [9, 17, 20, 26, 40, 72, 99], "17018": 9, "1710": 3, "173": 17, "17329258": 70, "175": 98, "1790": 107, "17th": 39, "17w": 17, "18": [9, 17, 20, 24, 26, 72], "18000000000": 17, "18010000000": 17, "184": [17, 78], "187": 6, "1875": 17, "18g": 17, "19": [17, 20, 40, 79], "190258": 110, "193": 17, "194": 17, "195": 17, "1969": 6, "198": 31, "1990": 6, "1996": 6, "1_mt": 24, "1e2265d2af1616fe7b5dc23": 17, "1e3zcakkiyaa9ewduxihvaif5fy2iif27": 75, "1er": 1, "1gb": [13, 17], "1l": [78, 99], "1mib": 17, "1tb": [13, 28], "1ubuntu1": 17, "1vox": 41, "1x": 15, "1x1mm": 42, "1x1x0": 42, "2": [6, 10, 13, 15, 17, 20, 22, 24, 26, 31, 32, 35, 38, 39, 40, 42, 62, 66, 70, 72, 73, 75, 78, 94, 99, 100, 109, 110], "20": [1, 15, 17, 20, 26, 40, 42, 63, 99], "200": 44, "2000": [20, 44], "20000": 17, "2001": 34, "2003": 34, "20030000000": 17, "20040000000": 17, "20040724203315798": 67, "2007": 9, "2008": 67, "2010": 63, "2012": 63, "2013": [22, 39, 63, 70], "2014": [17, 22, 42, 70, 109], "2015": [6, 20], "20150120_dmri_nogs": 90, "20150314_frq": 90, "20150530_ismrm": 90, "2015_neuroimag": 90, "2016": [9, 17, 20], "2017": [9, 17, 20], "20170515_report": 90, "2017_mrm": 110, "2018": [6, 20, 43, 76], "2019": [3, 6, 9, 20, 22, 76, 110], "2020": [17, 20, 40, 76, 110], "2021": [3, 6, 10, 17, 20, 27, 40, 76], "20210310": 40, "2022": [6, 10, 17, 20, 27, 76], "2023": [6, 20, 24, 76], "2024": [20, 76, 85], "2025": 20, "204": 1, "2041807": 105, "2043b": 22, "2048": 62, "2050d": 40, "206": 98, "207": [101, 108], "20explain": 49, "21": [15, 20, 26, 99], "210": 101, "215990860603743": 79, "2167": 98, "2188": 17, "22": [9, 17, 20, 40], "222": 17, "225": 20, "22764": 3, "229": 105, "22c": 17, "22w": 17, "23": [20, 26, 97, 99, 101], "238": 17, "239": 17, "23c": 17, "23w": 17, "23x18": 20, "24": [12, 20, 27, 31, 99], "240": 17, "241": 17, "2422": 17, "24c": 17, "24h": 31, "25": [10, 17, 20, 78, 94], "2500": 17, "250ml": 99, "255": 13, "255u": 17, "256": [13, 17], "256m": 17, "256mb": 17, "257": 17, "258": 17, "259": 17, "25c": 17, "25g": 107, "25x28": 20, "26": [17, 20, 27, 99], "261893952": 40, "2630": 15, "2643384": 105, "267": 1, "26c": 17, "27": [9, 17, 20, 99], "27c": 17, "28": [17, 20, 40, 109], "28060000000": 17, "28070000000": 17, "282": [9, 79], "28305": 40, "287db3a": 38, "28_linux": 35, "29": [17, 20], "290a43b80da6f608e3d47107f3b6c05e98eebe56ed4eea633748c08bd1a7837a": 40, "29381": 6, "298": 1, "299": 78, "29c": 17, "2_mt": 24, "2_threshold": 17, "2a1e9307": 42, "2d": [32, 42, 51, 73, 94], "2e": 44, "2gb": 17, "2l": 99, "2nd": [67, 78], "2retim": 17, "2x": 15, "3": [1, 3, 6, 9, 10, 13, 15, 17, 20, 22, 24, 27, 31, 32, 35, 38, 39, 40, 42, 58, 59, 62, 66, 70, 73, 77, 99, 100, 107, 110], "30": [10, 17, 20, 24, 32, 70, 99, 110], "300": [20, 78], "3000": [17, 28, 44], "30000": 17, "3003": 99, "3006": 99, "300mt": 78, "300v": 78, "300w": 17, "30m": 32, "30t02": 27, "30x20": 20, "31": [20, 32], "310": [9, 78], "31700m": 13, "318": [1, 78], "319": 3, "3195465": 67, "31c": 17, "31m": [32, 87], "31system": 17, "31w": 17, "32": [15, 17, 27, 32, 42, 99], "321874946": 40, "32263": 17, "32264": 17, "322736": 110, "32454": 110, "324636": 110, "3262ac5d6c5f573720c5e508da47608bd9fa49d6cd4dd547f75046c1a2f0d5b6": 40, "32bit": 17, "32c": 17, "32ch": 77, "32gb": [15, 17], "32m": 17, "32mb": 17, "32mtext": 32, "33": [17, 32], "33062": 17, "33063": 17, "3318major": 17, "338": 1, "33w": 17, "34": [1, 17, 32], "340c": 99, "3439mib": 17, "34824": 110, "3494785": 67, "35": [9, 17, 26, 32], "350": 72, "35031": 99, "35147": 17, "35450": 110, "357": 98, "36": [26, 27, 32], "365": 11, "367": 38, "368g": 17, "36m": 87, "37": [17, 26, 27, 32], "3750": 17, "3770": 99, "38": [17, 26], "381": 105, "3850": 99, "38c": 17, "38m": 87, "3997": 98, "3d": [3, 22, 42, 44, 47, 48, 51, 67, 70, 73, 74, 75, 103], "3d55fe9a3b6f04f5a6bd1b50274108de1810fcc8": 27, "3daa207ea45c75722bd0e3bc914dce3a": 31, "3dprinter4u": 101, "3dverkstan": 101, "3f309650bbc2d5146d9e1d1e24c7b17ee82c9da2fb609030ee83f3c1f2d74acb": 40, "3g": 107, "3kg": 78, "3mib": 17, "3rd": 63, "3t": 75, "3x2x1": 42, "4": [9, 10, 13, 15, 17, 22, 24, 31, 35, 40, 42, 44, 62, 66, 78, 99, 107, 109, 110], "40": [9, 24, 39], "400": [1, 72], "403": 75, "404041": 17, "404415": 17, "404712": 17, "405001": 17, "405275": 17, "405553": 17, "405838": 17, "406104": 17, "406373": 17, "406651": 17, "4096": [26, 40], "4096k": 63, "40output": 17, "41": [17, 105], "419618": 17, "419961": 17, "41w": 17, "42": [6, 17], "420": 17, "420291": 17, "420552": 17, "420848": 17, "420981": 31, "421108": 17, "424": 22, "425mib": 17, "428mib": 17, "43": 24, "4326": 105, "44": [9, 17, 26], "440": 17, "440g": 17, "443": 39, "45": [17, 26, 40], "453": 56, "457": 27, "4589610": 99, "46": 99, "46720": 17, "468": 1, "47": 17, "47499mib": 17, "47502mib": 17, "48": [13, 17], "4809v4": 15, "4846888maxresid": 17, "48gb": 15, "49140mib": 17, "495": 17, "496": 105, "49user": 17, "4d": [42, 47], "4gb": 17, "4h2": 98, "4th": 10, "4u": 17, "4x": 15, "4x2x1vox": 42, "5": [13, 15, 17, 20, 24, 31, 32, 38, 39, 40, 41, 42, 55, 62, 75, 78, 99, 107, 110], "50": [1, 10, 17, 24, 39, 75, 78], "500": [22, 72], "5000": 17, "50000": 44, "50g": 17, "50m": 17, "50mm": 101, "50u": 17, "50x50x50": 42, "51": [17, 31], "510": 17, "512": 17, "512k": 17, "512mb": 17, "512n": 17, "514": 98, "515938": 87, "5198356maxresid": 17, "51w": 17, "52": 17, "520": 22, "521": 98, "525022": 17, "525362": 17, "525648": 17, "525931": 17, "527": 98, "529": 22, "52w": 17, "53": [17, 22], "54": 1, "54elaps": 17, "55": [78, 107], "5500": 18, "551": 22, "5555": 98, "558": 22, "56": [17, 40], "560336": 17, "560681": 17, "560964": 17, "561247": 17, "5613": 82, "561525": 17, "561798": 17, "5619": [18, 82], "562070": 17, "562342": 17, "5625": 17, "5626": 82, "5655": 98, "57": [17, 78], "570": 22, "573495": 17, "57887": 17, "58": 17, "58390": 17, "5883": 98, "5886": 110, "59": 6, "5930k": 15, "5_sampl": 35, "5cm": 20, "5d": 42, "5db": 17, "5fl": 99, "5g": 107, "5ghz": 15, "5gt": 17, "5h2o": 107, "5pm": [10, 22], "6": [13, 15, 17, 22, 24, 31, 35, 40, 42, 44, 55, 62, 67, 71, 73, 75, 78, 99, 109, 110], "60": [17, 20], "600": [1, 17, 78], "6008": 17, "6009": 17, "600mt": 78, "602": 22, "603": 22, "607": 22, "6094": 17, "610": 22, "612": 22, "62": 17, "624": 1, "6250": 17, "626": 22, "63": [6, 17], "630": 1, "631": 1, "632": 1, "634": 1, "638": 78, "64": [12, 16, 17], "640x480": 94, "6433mib": 17, "6436mib": 17, "644": 31, "64bit": 17, "64gb": [15, 17], "64mb": 17, "64u": 17, "65": [17, 108], "650": [22, 27], "65w": 17, "66": [1, 17], "660": 22, "66179": 3, "66mhz": 17, "6719": 17, "68": 17, "683": 22, "6875": 17, "68w": 17, "69w": 17, "6db": 17, "6v": 40, "7": [13, 15, 17, 20, 26, 38, 40, 55, 59, 70, 73, 78, 110], "70": 17, "700": 42, "7000": 17, "701": 31, "70237": 99, "70240": 99, "707424input": 17, "708": 1, "71system": 17, "72": [20, 39], "73": [6, 17, 22, 99], "735": 98, "737": 9, "7452": 15, "75": [17, 78], "750": 13, "7500": 17, "755": 31, "75g": 107, "76": 22, "7656": 17, "766": 22, "76jkx": 31, "77": [17, 99], "775": 56, "78": [17, 94, 107], "7812": 17, "79": 40, "7944": 82, "7_48": 3, "7d3e45f0d4c67f31883b76eafc6cfdca1c1591590e2243dc8d443b07616b3609": 40, "7h": 1, "7t": [6, 75], "8": [6, 10, 13, 15, 17, 20, 22, 26, 31, 35, 38, 40, 42, 55, 66, 70, 78, 87, 99, 100, 110], "80": [17, 78, 94, 98], "800": [67, 72], "801500": 110, "802h": 40, "8080": 17, "81": 17, "811": 98, "8125": 17, "8192": 26, "81g": 40, "82": 99, "82w": 17, "83": 6, "8363576": 3, "8363652": 3, "84": 1, "840261": 42, "85": 17, "855": 98, "86": 17, "8653423": 3, "8750": 17, "878117": 35, "88": 6, "8888": 55, "89": 17, "8906": 17, "892c030faef331591048f8b6487dd65f74afbea7": 27, "89elaps": 17, "8a": 17, "8am": 22, "8cm": 20, "8gb": 17, "8th": 75, "8x": 15, "9": [1, 17, 20, 24, 31, 35, 42, 99, 110], "90": [15, 17], "900": 17, "9062": 17, "91": [17, 101], "92": [9, 17], "92w": 17, "9375": 17, "938165": 17, "938506": 17, "938794": 17, "939082": 17, "94": 17, "94mhz": 78, "95": [24, 99], "9577": 99, "95g": 107, "9688": 17, "96bdd193d0da999895734a57f8bbfa275db91ad1": 27, "973280": 17, "975": 17, "978": [3, 110], "98": [17, 78], "98320": 98, "984221": 17, "984542": 17, "984816": 17, "985088": 17, "985364": 17, "985628": 17, "985890": 17, "986153": 17, "986416": 17, "986679": 17, "986945": 17, "987207": 17, "99": 17, "994256": 17, "994898": 17, "995": 42, "995454": 17, "996001": 17, "999064": 17, "99design": 74, "9am": 10, "9g": 107, "9h": 1, "A": [3, 4, 6, 7, 9, 10, 13, 15, 17, 19, 20, 22, 24, 28, 31, 37, 39, 40, 42, 54, 58, 67, 70, 76, 78, 82, 94, 105, 110], "AND": [24, 63, 78], "AT": 67, "And": [17, 40, 67], "As": [10, 17, 39, 55, 82, 85, 91], "At": [22, 35, 67, 70], "Be": [44, 98], "But": 10, "By": [15, 28, 39], "FOR": 24, "For": [1, 3, 10, 12, 13, 15, 16, 17, 20, 22, 24, 25, 27, 28, 29, 31, 39, 40, 42, 62, 63, 66, 67, 79, 82, 90, 91, 94, 100, 109, 110], "IF": 24, "IFS": 32, "IT": [21, 92], "If": [1, 13, 15, 17, 18, 20, 24, 26, 27, 28, 29, 31, 35, 36, 39, 40, 47, 50, 51, 53, 54, 55, 56, 62, 63, 66, 67, 70, 71, 72, 73, 76, 79, 81, 82, 90, 91, 92, 93, 94, 95, 97, 98, 99, 105, 109, 110], "In": [1, 10, 15, 24, 26, 28, 39, 41, 42, 50, 53, 54, 55, 62, 63, 67, 70, 71, 80, 82, 84, 85, 86, 94, 103, 110], "It": [4, 10, 14, 20, 24, 26, 27, 28, 31, 32, 39, 40, 41, 42, 47, 62, 63, 70, 76, 85, 94, 98, 100], "NO": [24, 35, 84], "NOT": [20, 25], "Near": 22, "No": [17, 22, 32, 35, 51, 70], "Not": [17, 67], "OF": [20, 24], "ON": [20, 42, 70], "ONE": [24, 110], "OR": 67, "On": [3, 10, 14, 15, 17, 28, 31, 39, 54, 63, 67], "One": [13, 20, 67], "Or": [31, 39, 41, 63, 67, 73], "THE": 84, "THERE": 24, "TO": [13, 59, 67, 84], "That": [10, 24, 39, 88, 91, 99, 110], "The": [1, 3, 6, 13, 14, 15, 20, 22, 24, 25, 26, 27, 28, 29, 31, 32, 35, 38, 39, 40, 41, 42, 43, 47, 50, 53, 54, 55, 62, 70, 71, 73, 76, 78, 80, 82, 85, 90, 94, 98, 99, 100, 101, 110], "Then": [13, 15, 17, 20, 24, 27, 31, 35, 39, 42, 63, 66, 67, 71, 86, 110], "There": [10, 13, 22, 24, 26, 42, 67, 82, 98], "These": [10, 15, 24, 27, 56], "To": [1, 12, 13, 15, 17, 19, 20, 22, 24, 25, 26, 27, 28, 31, 32, 39, 40, 41, 42, 47, 50, 51, 54, 56, 62, 63, 64, 67, 70, 71, 73, 82, 94, 100, 101, 107, 110], "WITH": 84, "With": [63, 71], "_": [24, 31], "__version__": 17, "_acq": 24, "_brain": 32, "_ce": 24, "_den": 24, "_desc": 24, "_develop": 71, "_dir": 24, "_dwi": 24, "_fxshowposixpathintitl": 67, "_label": 24, "_mean": 67, "_mt": 24, "_myfil": 56, "_part": 24, "_re": 24, "_rec": 24, "_reg_diffeo": 42, "_run": 24, "_se": 24, "_space": 24, "_versiontrack": 110, "a1": 17, "a205": 109, "a6000": [15, 17], "a7b20f20": 17, "a9539pi": 107, "aaaac3nzac1lzdi1nte5aaaaiewpqmuw5ifj87tdl12x5": 28, "aapm": 6, "aarep": 89, "aaron": 22, "ab": [17, 32], "abacu": 110, "abbei": 87, "abbrevi": 67, "abcd": 85, "abdolrezae": 9, "abl": [17, 20, 35, 36, 39, 55, 71, 72, 75, 82, 85, 94, 110], "about": [0, 1, 3, 10, 15, 24, 27, 28, 39, 40, 42, 67, 70, 71, 80, 82, 89, 94, 107], "abov": [15, 17, 20, 24, 28, 39, 40, 55, 63, 67, 82, 94, 101, 110], "absolut": [26, 62], "abstract": [3, 28, 110], "abwmgmt": 17, "ac": [49, 67], "academ": [20, 22, 82], "academi": 6, "acceler": [38, 70, 109], "accept": [10, 15, 20, 22, 28, 35, 39, 94, 100], "access": [1, 6, 8, 13, 14, 15, 20, 24, 25, 27, 31, 32, 39, 40, 67, 76, 78, 81, 86, 91, 101, 105, 110], "accommod": [20, 94, 100], "accomod": 20, "accompani": 94, "accord": [24, 28, 94], "accordingli": [29, 94], "account": [15, 17, 19, 20, 27, 28, 39, 40, 53, 55, 56, 67, 75, 79, 80, 82, 85, 86, 91, 110], "account_appl": 13, "accountchoos": 110, "accross": 24, "accur": [39, 99], "acdc": 105, "acdc_spine_7t_033p": 76, "acdc_spine_7t_049p": 79, "acdc_spine_7t_049p_20220923_111852672": 79, "acess": 12, "achiev": [39, 94], "acl": 67, "aclr8": 67, "acq": 24, "acquaint": 3, "acquir": [24, 75, 78], "acquisit": [6, 24, 76, 92], "acronym": 74, "acronymifi": 74, "across": [17, 22, 29, 32, 40, 75, 82, 85, 97], "acsviol": 17, "acta": 6, "actif": [15, 22], "action": [31, 32, 58, 67, 73, 94], "activ": [3, 12, 13, 17, 21, 26, 27, 47, 59, 67, 72, 73, 75, 78, 82, 87], "activewindow": 58, "actrim": 20, "actual": [20, 27, 28, 42, 54], "acut": 9, "ad": [1, 15, 22, 24, 25, 31, 39, 40, 47, 50, 62, 67, 71, 75, 87, 90, 94, 99, 102, 110], "adad": [3, 9, 22, 110], "adapt": [17, 94], "adb": 40, "adblock": 67, "add": [1, 12, 15, 19, 20, 24, 27, 28, 29, 31, 32, 38, 40, 42, 50, 54, 58, 63, 64, 66, 67, 70, 73, 75, 76, 79, 94, 107, 110], "add_subplot": 73, "addison": 99, "addit": [8, 13, 22, 24, 41, 82, 94], "addpath": 12, "address": [14, 15, 17, 18, 21, 25, 26, 28, 39, 53, 67, 73, 80, 85, 86, 94], "addunlock": 40, "adjust": [6, 101], "admin": [21, 28, 55, 63, 66, 85, 90], "administr": [15, 22, 55, 67, 90], "adrienn": 75, "advanc": [17, 20, 22, 73, 99, 109], "advant": 42, "advantag": [17, 67, 82, 94], "adversari": 3, "advnonfatalerr": 17, "ae": 87, "aercap": 17, "af": 6, "affair": 82, "affect": [75, 94], "affili": 20, "affinetransform_double_2_2": 42, "affinetransform_double_3_3": 42, "afi": 75, "afp": [25, 26, 56], "afraid": 6, "after": [1, 10, 12, 13, 15, 24, 25, 31, 41, 47, 53, 55, 67, 75, 85, 94, 100, 110], "afterward": [20, 24], "ag": 24, "again": [15, 20, 28, 35, 40, 67], "agenda": 1, "agent": [102, 107], "agil": [22, 107], "agnost": [24, 75], "ago": 31, "agreement": [3, 22], "ahead": 20, "ahuja": 9, "ahunts": 98, "ai": [3, 82, 110], "aiff": 67, "aim": 39, "air": [97, 105], "airdrop": 67, "aj": [6, 9], "ajnr": [9, 110], "akyel": 22, "al": [6, 34, 75, 109], "alcool": 1, "aldina": 99, "aldrich": [99, 107], "aleator": 3, "alexandru": [27, 75, 76, 79], "alexandrufoia": [17, 27], "algorithm": [4, 22, 24, 39, 41, 73, 94], "alia": [17, 25, 39, 87], "alizadeh": 9, "all": [1, 10, 12, 13, 15, 17, 20, 24, 28, 31, 32, 39, 40, 42, 51, 54, 55, 59, 63, 67, 70, 71, 72, 84, 87, 88, 90, 91, 94, 102, 110], "allan": 75, "alloc": [13, 17, 28], "allow": [15, 17, 20, 22, 24, 29, 39, 41, 48, 50, 54, 55, 62, 64, 67, 70, 71, 78, 85, 94, 97, 100], "alois": 22, "alon": 55, "along": [28, 39, 41, 51, 75], "alonso": [22, 28], "alphanumer": [24, 39], "alreadi": [10, 13, 15, 17, 22, 24, 28, 39, 67, 75, 79, 94], "also": [10, 13, 14, 15, 17, 20, 22, 24, 26, 27, 28, 32, 39, 40, 44, 50, 55, 62, 67, 70, 71, 76, 82, 94, 98, 101, 110], "alsop": 6, "alt": [25, 35, 58, 67], "alter": 94, "altern": [31, 32, 39, 42, 67, 94], "although": [10, 56], "altium": 108, "alwai": [10, 40, 56, 90, 94], "am": [9, 94], "amal": [21, 22], "amazon": 99, "amazonaw": 27, "amd": 15, "amd64": 17, "america": 20, "american": [99, 110], "amir": 22, "amount": [17, 20, 26, 75, 109], "amphenol": 105, "amphith\u00e9\u00e2tr": 1, "amri": 107, "an": [1, 3, 9, 10, 13, 17, 20, 22, 24, 25, 26, 27, 29, 31, 32, 35, 39, 40, 41, 42, 45, 47, 51, 54, 55, 56, 64, 67, 72, 75, 76, 78, 79, 80, 82, 85, 89, 90, 95, 98, 99, 100, 102, 109, 110], "analyi": 20, "analys": 22, "analyseur": 22, "analysi": [4, 22, 24, 42, 46, 82, 95, 110], "analyz": [45, 67, 94, 107], "analyzehead": 44, "anat": [24, 40], "anatom": [24, 48], "anchor376728": 99, "andjela": 22, "andreann": 75, "android": 85, "andr\u00e9ann": 22, "angl": 75, "anglai": 22, "anglophon": 109, "ani": [0, 1, 4, 10, 14, 17, 20, 26, 27, 28, 31, 35, 39, 40, 44, 55, 56, 67, 70, 79, 82, 85, 88, 94, 99, 102, 110], "anim": 78, "anima_data": 43, "annal": 110, "annex": [17, 24, 26, 27, 28, 30, 59, 92], "annoi": [56, 70], "annot": [15, 27, 67], "announc": 13, "anonym": [3, 102], "anonymous_ident": 102, "anoth": [15, 24, 28, 31, 40, 54, 70, 79, 80, 82, 110], "anova": 22, "ansi": 74, "ansibl": 15, "answer": [6, 10, 42, 67], "ant": [13, 15, 87], "antena": 41, "antenn": 22, "antenna": [75, 110], "anteriorli": 75, "anticip": 10, "antigen": 79, "antsbin": 42, "antspath": 13, "antsr": 42, "antsuselandmarkimagestogetaffinetransform": 42, "antsuselandmarkimagestogetbsplinedisplacementfield": 42, "anyconnect": 15, "anymor": [18, 84], "anyon": 31, "anyth": [13, 28, 40, 70, 85, 97, 103, 110], "anytim": 40, "anywai": 94, "ap": 31, "ap229997": 3, "apache2": 62, "apart": 97, "apertur": 110, "api": 94, "app": [6, 13, 15, 63, 67, 70, 87], "appar": [24, 28], "appear": [15, 27, 28, 39, 40, 70, 72], "append": [24, 71], "appl": [1, 67, 70, 71, 84, 86], "appledoubl": 56, "applescript": 67, "appleshowallfil": 67, "appli": [20, 22, 24, 41, 42, 51, 67, 75, 94, 100, 109], "applianc": 63, "applic": [3, 6, 15, 17, 19, 22, 38, 54, 63, 70, 71, 75, 78, 84, 87, 94, 96, 109], "appliqu\u00e9": 22, "appoint": 98, "apprentissag": 22, "approach": [3, 10, 39, 73, 94], "approch": 22, "appropri": [10, 17, 19, 94, 95], "approv": [19, 22], "approxim": 3, "apr": [9, 17, 20], "april": 20, "apt": [15, 17, 35, 38, 39, 40, 54, 59, 62, 63], "ar": [0, 1, 10, 13, 15, 17, 20, 22, 23, 24, 25, 26, 27, 28, 29, 31, 35, 40, 41, 42, 50, 51, 54, 55, 56, 63, 66, 67, 70, 71, 73, 75, 76, 78, 79, 80, 82, 85, 86, 90, 91, 92, 93, 94, 95, 98, 99, 100, 102, 107], "aramend\u00eda": 6, "arb": 17, "arbel": 22, "arbitrari": 94, "arbour": 109, "arbselect": 17, "arch": 40, "architectur": [3, 70], "archiv": [26, 31, 38, 71], "area": [51, 75, 94], "arf1681": 105, "arfx1905": 105, "arg": [32, 84], "argument": [13, 31, 32, 42, 63, 67, 71], "arial": 72, "arlocarreon": 39, "around": [67, 100], "arrai": [6, 73, 75], "arrang": 75, "arriv": 96, "arrow": 31, "art": [3, 6, 28, 39, 42, 74], "articl": [8, 10, 22, 67, 94, 101, 104], "artif": 22, "artifici": [22, 110], "artificiel": 22, "arxiv": 3, "ascii": 74, "ask": [6, 10, 12, 15, 19, 20, 22, 28, 39, 67, 71, 76, 79, 82, 95, 101, 109, 110], "askubuntu": 31, "asl": 59, "asp": [99, 100, 109], "aspect": [10, 15], "aspm": 17, "aspm_l1": 17, "aspmoptcomp": 17, "aspx": 105, "assemblag": 20, "assembli": 20, "assep": [93, 100], "assess": [6, 9], "assign": [13, 22, 63, 91], "assimil": 3, "assist": [40, 98], "associ": [0, 15, 24, 100, 110], "assum": [35, 39, 42], "assumpt": 75, "assur": 71, "asymmetri": 42, "asymptomat": 24, "atext": 67, "athen": 20, "atla": [24, 75], "atlas": [3, 24], "atlassian": 39, "atom": [57, 102], "atomicopscap": 17, "atomicopsctl": 17, "atrium": 1, "atroph": 75, "atrophi": 75, "attach": [15, 31, 99], "attempt": 40, "attend": [20, 22, 79], "attent": [3, 94, 98], "attnbtn": 17, "attnind": 17, "attribut": 40, "au": [22, 99], "aucun": 20, "audio": [17, 67], "augment": [3, 75], "august": 109, "aurora": 99, "australia": 20, "austria": 110, "autbwint": 17, "auth": [3, 102], "auth_alg": 102, "authent": [15, 28, 72, 85], "authgroup": 15, "author": [3, 19, 24, 27, 39, 70, 75, 82, 94, 110], "authoris": 79, "auto": [15, 28, 40, 72, 87, 101], "autof": 39, "autom": [3, 4, 9, 39, 84, 94], "automat": [3, 16, 17, 20, 24, 39, 75, 78, 94], "automatis\u00e9": 22, "automn": 10, "autoopen": 58, "autoseq": 3, "autwiddi": 17, "aux": [22, 31], "auxcurr": 17, "auxpwr": 17, "av": 98, "avail": [1, 4, 6, 10, 13, 15, 16, 17, 24, 26, 54, 55, 70, 71, 72, 76, 85, 86, 94, 96, 108], "avansp": 70, "avatar": 28, "avec": 1, "averag": [3, 75], "avi": 67, "avoid": [20, 24, 26, 31, 67, 70, 94], "avt": 13, "avx2": 17, "aw": [27, 40], "awai": 67, "awar": [29, 56], "awesom": [33, 67], "awesome_study_manuscript_r0": 110, "awesome_study_manuscript_r1": 110, "awesome_study_responses_to_review": 110, "awesome_study_reviewer_suggest": 110, "awg": 99, "aws_access_key_id": 27, "aws_secret_access_kei": 27, "ax": [24, 72, 73], "ax_t1w": 24, "axi": 72, "axial": [42, 51], "axon": [24, 75], "axondeepseg": [1, 19, 47, 75, 94], "azp": 31, "b": [1, 17, 20, 27, 28, 39, 41, 42, 63, 67, 72, 87, 98, 110], "b0": 75, "b000": 17, "b0000000": 17, "b0089ryn5i": 99, "b1": 75, "b1000000": 17, "b1080000": 17, "b4": 17, "baa493": 18, "back": [10, 15, 17, 25, 26, 35, 67], "backend": [40, 73], "backend_agg": 73, "background": [6, 20, 54, 75], "backpropag": 3, "backup": 67, "backward": [3, 39, 94], "bad": 39, "baddllp": 17, "badtlp": 17, "baehr": 67, "bahsrc": 13, "ball": 44, "ballpark": 110, "band": 20, "bandwidthtest": 35, "banerje": 22, "bank": 20, "bant": 109, "banting_eng": 109, "bar": [17, 28, 39, 67, 70], "barcelona": 20, "barrier": 44, "base": [3, 4, 6, 9, 10, 20, 22, 24, 32, 42, 63, 75, 87, 94, 100], "baselin": 94, "basenam": [31, 67], "bash": [12, 13, 15, 27, 30, 32, 35, 54, 63, 66, 95], "bash_profil": [13, 39, 43, 66, 70, 71, 84, 87], "bashrc": [13, 38, 50, 66], "basi": [54, 82], "basic": [6, 24, 27, 39, 44, 57, 71], "batch": [3, 17, 32, 40], "bate": 110, "bayesian": 3, "bazel": 38, "bazelbuild": 38, "bb0": 17, "bc": 20, "bc03sc00i00": 17, "bc03sc02i00": 17, "bc06sc80i00": 17, "bdist_wheel": 73, "beatti": 9, "beaudoin": 22, "becaus": [10, 13, 24, 26, 28, 40, 63, 67, 70, 72, 79, 90, 94, 99, 110], "becom": 20, "bed": 101, "bede251a0f67": 3, "been": [5, 12, 13, 26, 28, 31, 39, 40, 67, 78, 82, 94], "befor": [10, 15, 20, 24, 39, 41, 56, 67, 70, 71, 85, 95, 98, 100, 101, 109], "beforehand": 10, "begin": [13, 73], "beginn": [3, 37], "behalf": 85, "behaviour": 40, "behind": [10, 15, 28, 72], "being": [15, 17, 39, 75, 82], "below": [10, 15, 17, 20, 24, 27, 28, 29, 32, 39, 40, 54, 55, 59, 67, 76, 84, 94], "ben": 3, "benchmark": 3, "benefit": [17, 41, 91], "benjamin": [22, 75], "bennani": [21, 22], "bento": 1, "bep25": 24, "berlin": 20, "bernard": [1, 22], "bernhard": 67, "bernoullirbm": 37, "best": [0, 3, 10, 15, 20, 28, 55, 75, 110], "bet": [28, 32, 75], "beta": 94, "better": [10, 24, 28, 39, 75, 94], "betterpost": 20, "betti": 15, "between": [3, 10, 13, 17, 22, 24, 26, 28, 63, 67, 70, 75, 78, 94, 110], "beyond": 82, "bia": [3, 75], "bias": 29, "biascorr": 41, "biblio": 90, "bibliographi": [8, 110], "bic": 79, "bid": [27, 28], "bidsvers": 24, "big": [44, 110], "big_dataset": 13, "bigemptyfil": 63, "bigger": [1, 13], "bin": [12, 13, 15, 17, 27, 31, 32, 35, 38, 42, 43, 50, 54, 59, 66, 67, 70, 73, 78, 84, 87, 107], "binari": [17, 24, 26, 42, 66, 70, 71, 94], "bind": 17, "binomi": 24, "bio": 22, "biobank": [27, 40], "biobas": 99, "bioimag": 110, "biol": 6, "biolog": 22, "biologi": 110, "biomark": 9, "biomed": [3, 10, 20, 21, 76, 110], "biomedicin": 110, "biomicrosyst\u00e8m": 22, "biom\u00e9dic": 22, "biom\u00e9dical": 22, "biom\u00e9dicaux": 22, "biophotoniqu": 22, "birdcag": 6, "bire": [17, 87, 110], "birth": 40, "bit": [10, 17, 22, 51, 67, 100], "bitbucket": 39, "bittorr": 40, "biz": 74, "bj": 6, "black": 32, "blacklist": 35, "blake2b160": 40, "blake2b224": 40, "blake2b256": 40, "blake2b384": 40, "blake2b512": 40, "blake2bp512": 40, "blake2s160": 40, "blake2s224": 40, "blake2s256": 40, "blake2sp224": 40, "blake2sp256": 40, "blank": 39, "blob": 3, "bloch": 6, "block": [31, 40, 67, 94], "blog": 39, "blogspot": [20, 67, 70], "bloomfilt": 40, "blostein": 22, "blue": [32, 67, 70], "blueprint": 54, "bluetooth": 102, "blurri": 20, "bmc": [9, 41], "bmcwiki": 41, "bmde": 22, "bmde501": 22, "bmde503": 22, "bmi": 75, "bnc": [78, 99, 105], "board": [20, 67, 94], "bodi": [20, 75], "bolar": 6, "bold": [39, 75], "bone": 75, "book": [3, 6, 7, 8, 10, 20, 39, 40, 73, 92, 110], "bool": 67, "boolean": 67, "bordeaux": 24, "border": 75, "borg": 40, "borrow": 94, "boston": 75, "both": [17, 20, 22, 24, 28, 35, 51, 67, 94], "bottl": 99, "bottom": [1, 20, 48, 66, 67, 94, 107], "boudoux": 22, "boudreau": 28, "bound": [15, 67], "boundari": [42, 75], "boundarypointsonli": 42, "bours": 109, "box": [28, 51], "box_nam": 62, "bp": 24, "bracket": [24, 75], "brain": [3, 22, 24, 45, 46, 72, 75, 101, 110], "brainhack": 22, "brainhackmtl": 22, "brainsight": 74, "brainvisa": 73, "branch": [27, 28, 32, 40, 87], "branch_nam": 39, "branch_prefix": 32, "brand": 19, "brandonb927": 67, "break": [15, 39, 94, 102], "breakspear": 110, "bresnahan": 9, "brett": 39, "brew": [15, 40, 59], "brianav": 42, "brianlinklett": 63, "briare": 13, "bridg": 4, "bright": 67, "bring": [40, 62, 101, 107], "brisban": 20, "broad": 3, "broken": 21, "brown": 32, "brows": [28, 88], "browser": [1, 17, 26, 28, 50, 53, 55, 67, 110], "bruce": 75, "bsfd": 109, "bspline": 42, "bsplinesyn": 42, "bu": 17, "buchmann": 22, "budget": [10, 17, 20, 100], "bug": [1, 26, 39, 67, 94], "buggi": 74, "bui": 97, "build": [1, 13, 35, 38, 40, 43, 44, 57, 73, 75, 103], "build_ants_sct": 42, "build_document": 70, "build_exampl": 70, "build_pip_packag": 38, "build_shared_lib": 70, "build_templ": 13, "build_test": 70, "builder": [6, 54], "buildtemplateparallel": 13, "built": [4, 70, 71], "buld": 38, "bulk": 27, "bup": 40, "bureaux": 100, "busi": [10, 98, 99], "busmast": 17, "button": [14, 20, 28, 39, 67], "bval": 24, "bvalu": 75, "bvec": [24, 44], "bw": 51, "bwint": 17, "bwmgmt": 17, "bwnot": 17, "by_group": [12, 80], "bypass": 75, "byte": 17, "bzdok": 22, "bzip2": 54, "c": [1, 9, 13, 17, 20, 22, 28, 31, 38, 39, 42, 47, 53, 63, 67, 70, 71, 110], "c0000000": 17, "c1": [17, 72], "c1c": 17, "c2": [72, 75], "c3": [67, 72], "c3d": [41, 42, 51], "c4": [72, 75], "c5": 72, "c6": [72, 75], "c7": 72, "ca": [1, 5, 12, 13, 14, 15, 16, 17, 20, 21, 22, 23, 25, 26, 40, 41, 67, 70, 74, 76, 78, 79, 80, 82, 85, 86, 87, 89, 93, 97, 98, 99, 100, 101, 102, 105, 109], "ca_cert": 102, "cabrini": 98, "cach": [17, 31, 55, 67], "cad": 60, "caffein": 67, "caf\u00e9t\u00e9ria": 1, "cal": 76, "calcul": [15, 67, 75], "calculquebec": 13, "calendar": [10, 15, 17, 79, 92], "calendri": 1, "calibr": [3, 107], "call": [22, 27, 28, 36, 39, 67, 71, 76, 85, 98, 110], "callaghan": 6, "caloz": 75, "camelcas": 24, "campbel": 75, "campu": [15, 26, 81, 85], "campus": 82, "camtasia": 67, "can": [0, 1, 7, 8, 10, 12, 13, 14, 15, 17, 20, 22, 24, 26, 27, 28, 29, 31, 32, 35, 36, 39, 40, 41, 42, 44, 50, 54, 55, 56, 62, 63, 66, 67, 70, 71, 73, 75, 76, 78, 79, 82, 85, 86, 87, 90, 91, 94, 97, 98, 101, 102, 107, 110], "canada": [11, 20, 22, 97, 100, 109, 110], "canadian": [100, 109, 110], "canal": 24, "cancel": [18, 39, 79, 94], "candid": 22, "candor": 99, "candorind": 99, "cannot": [17, 39, 42], "canopi": 73, "cap": 17, "capabl": [17, 39, 94], "capacit\u00e9": 1, "capit": 39, "capitan": 67, "captur": 24, "caq": 100, "car": 75, "card": [20, 21, 35, 82, 102], "cardiac": [3, 75], "cardiologi": 98, "care": [24, 44, 98], "career": 29, "carlo": [3, 44], "carr": 99, "cart": 105, "cartridg": 18, "case": [10, 15, 17, 28, 31, 39, 40, 42, 55, 56, 70, 80, 94, 100], "cash": [20, 76], "cask": 15, "cassett": 79, "cat": [15, 17, 28, 31, 35, 40], "catalog": 99, "categor": 24, "categori": [94, 97, 99], "caus": [24, 39, 56, 72, 75, 94], "caviti": 24, "cc": [10, 17, 21, 42], "ccdb": 13, "ccmake": 70, "ccmp": 102, "cd": [12, 13, 27, 28, 31, 38, 39, 40, 54, 63, 73, 102], "cdeep3m": 4, "cdr": 67, "cdrom": 63, "ce": [10, 24, 87], "cedar": 87, "cell": 24, "cemsk": 17, "center": [42, 74, 98, 110], "cento": [40, 54, 84], "centr": [98, 110], "central": [1, 27], "cer": 102, "ceram": 99, "cerebrospin": 24, "cereza": 6, "cert": 102, "certain": [26, 94], "certif": [15, 28, 85, 102], "certificat": 100, "cervic": 24, "cest": 75, "cesta": 17, "cevdet": 22, "cfe": 6, "cfg1": 17, "cgi": [78, 107], "cgsession": 67, "ch04": 63, "chah\u00e9": 22, "chain": 15, "chair": 110, "chais": 1, "challeng": [3, 10], "chanc": 10, "chandar": 22, "chang": [10, 15, 19, 20, 24, 26, 35, 40, 42, 48, 51, 53, 56, 58, 63, 70, 71, 75, 82, 84, 101], "changelog": 94, "channel": [17, 19, 28, 78, 82, 88], "channel_setup_fwd_listener_tcpip": 17, "chappel": 7, "chapter": 3, "char": 17, "charact": [32, 39, 94], "character": [24, 110], "charg": [39, 79], "charlei": [22, 75], "charp": 17, "cheap": 99, "cheaper": 67, "cheat": [39, 72, 73], "cheatsheet": [31, 32], "check": [1, 6, 14, 15, 17, 20, 26, 28, 32, 35, 51, 54, 67, 73, 75, 76, 80, 82, 87, 94, 97, 98, 101], "checkjob": 13, "checkout": [28, 40], "chem": 6, "chem3": 99, "chemical_html": 99, "cheriet": 22, "chest": 75, "children": 75, "china": 20, "chmod": [13, 15, 26, 31, 35, 40, 56, 67], "choic": [20, 55], "choix": 20, "choos": [15, 20, 24, 27, 28, 29, 41, 44, 71, 94], "chose": [15, 70], "chosen": [10, 26], "chown": [31, 56], "chri": 22, "christensen": 6, "christin": 22, "christoph": 22, "chrome": [15, 110], "chu": 110, "chum": [20, 98], "ci": 17, "cic": 100, "cif": [26, 66], "cihr": 109, "circuit": [22, 75, 99], "circuiteri": 20, "cis522": 3, "cisco": 15, "citat": 110, "cite": 94, "citi": 20, "claim": [20, 79, 82], "clang": 70, "clang_cxx_librari": 71, "clarif": 10, "clariti": [24, 94], "class": [3, 70, 71, 94], "classic": 22, "classif": [3, 4, 75], "classifi": [4, 97], "classitk_1_1n4biasfieldcorrectionimagefilt": 41, "clbin": 31, "clean": [12, 15, 24, 25, 26, 28, 54, 57, 67, 94, 101, 110], "clear": [10, 24, 31, 62, 99], "clearli": 94, "cli": [26, 31], "click": [0, 1, 5, 15, 26, 28, 39, 48, 51, 53, 63, 70, 71, 84, 86, 94], "clicolor": 87, "client": [15, 20, 31, 40, 54, 75, 85, 86], "clientsopt": 54, "clinic": [3, 6, 9, 98, 109], "cliniqu": 98, "cliniqueenrout": 98, "clip": [19, 67], "clockpm": 17, "clone": [17, 27, 31, 38, 53, 54], "close": [10, 18, 28, 31, 51, 67, 94, 107], "closest": 98, "cloud": [4, 42], "clsc": 98, "clumeq": 13, "cluster": [1, 13, 39, 75], "cluster_fold": 15, "cm": [73, 78, 99, 107, 110], "cmake": [13, 70, 87], "cmake_c_compil": 70, "cmake_cxx_compil": 70, "cmake_cxx_flag": 70, "cmake_install_prefix": 70, "cmake_osx_architectur": 70, "cmake_osx_deployment_target": 70, "cmake_osx_sysroot": 70, "cmakecach": 70, "cmap": 73, "cmd": [15, 25, 26, 51, 67, 110], "cmder": 15, "cmpltabrt": 17, "cmpltto": 17, "cnc": 103, "co": [20, 67, 74, 75, 99, 109, 110], "coauthor": 110, "coax": 99, "coaxial": 99, "cocoa": 70, "cocoa_vtk": 70, "code": [3, 14, 15, 20, 22, 39, 42, 51, 67, 74, 82, 87, 106], "codebas": 94, "codeblock": 70, "coeur": 98, "coffe": 21, "cognit": 29, "cohen": [3, 9, 22, 110], "coher": 10, "coil": 103, "col1": 32, "col2": 32, "col3": 32, "col4": 32, "col5": 32, "colder": 99, "cole_parmer_narrow_mouth_hdpe_bottle_2_l_64_oz_1_pk": 99, "coleparm": 99, "colinpurrington": 20, "collabor": [20, 24, 28, 29, 110], "collaps": [42, 94], "colleagu": 26, "collect": [4, 70], "colleg": 3, "collin": 22, "color": 87, "colorbar": 73, "colorsync": 67, "coloss": 13, "colour": [20, 31, 87, 94], "coltran": 15, "columbia": [6, 110], "column": [24, 67, 87, 94], "column_comma": 87, "column_semicol": 87, "column_tab": 87, "com": [3, 14, 15, 17, 20, 24, 27, 31, 35, 38, 39, 42, 53, 54, 57, 59, 62, 63, 67, 70, 74, 75, 87, 90, 93, 98, 99, 100, 101, 104, 105, 107, 109, 110], "combin": [4, 24, 31, 40, 67, 75, 87], "combo": 67, "come": [29, 82], "comm": 24, "comma": [17, 87], "command": [12, 13, 17, 31, 39, 40, 41, 42, 44, 53, 54, 55, 58, 59, 63, 67, 70, 71, 73, 87, 94], "commclk": 17, "comment": [15, 20, 39, 58, 87, 90, 94], "commit": [24, 27, 28, 29, 31, 40, 54, 87], "commit_id": 39, "commit_numb": 39, "commit_xx": 39, "committe": [10, 20], "commmand": 58, "common": [13, 17, 24, 38, 39, 67], "common_runtim": 17, "commonli": 47, "commun": [20, 22, 24, 29, 40, 85, 88, 110], "comp": 22, "compact": 63, "compani": 99, "companion": 24, "compar": [4, 40, 74, 75], "comparison": 75, "compat": [17, 27, 40, 78, 94], "compens": [75, 76], "competit": 109, "compil": [13, 17, 38, 42, 70, 71], "complaint": 70, "complet": [3, 10, 17, 22, 35, 39, 40, 42, 70, 75, 76, 82], "complex": [3, 42, 94], "complianc": [17, 24], "complianceso": 17, "compliant": 24, "complic": [20, 31], "compon": [42, 110], "composit": 22, "comprehens": [3, 24, 31, 46], "compress": [12, 24, 67, 75], "compression_label": 24, "compressor": 105, "comput": [1, 3, 17, 19, 26, 27, 28, 35, 42, 56, 62, 63, 67, 70, 75, 81, 91, 110], "computationnel": 22, "computecanada": [13, 27, 40, 87], "computeoffset": 42, "computer": 110, "concept": 110, "concern": 89, "concis": [39, 94], "conda": [17, 40, 47, 59, 66, 87], "condit": [3, 35], "condo": 97, "conduct": 107, "cone": 3, "conf": [31, 35, 102], "confer": [1, 21, 26, 90, 109], "config": [15, 27, 38, 39, 43, 53, 62, 94], "config_neuropoli": 15, "configur": [15, 17, 27, 28, 31, 35, 38, 40, 43, 62, 66, 70, 78, 83, 101, 102], "confirm": [1, 10, 40], "confus": [24, 39], "connect": [12, 14, 16, 26, 27, 31, 54, 64, 72, 73, 75, 82, 85, 98, 102, 110], "connectom": [39, 73], "connector": 78, "consciou": 29, "consensu": 6, "consid": [10, 15, 20, 28, 42], "consist": [3, 10, 24, 39], "consol": [6, 76], "consortium": 6, "constraint": 3, "construct": 48, "consul": 100, "consulat": 109, "consult": [15, 29, 81, 82, 98, 99, 109], "consum": 22, "contact": [10, 15, 17, 22, 24, 25, 27, 75, 82, 92, 93, 100, 109, 110], "contactez": 98, "contain": [10, 17, 20, 24, 26, 40, 70, 71, 89, 91, 102], "container_id": 54, "content": [10, 15, 27, 28, 31, 39, 40, 63, 67, 70, 87, 107, 110], "contest": 109, "context": [24, 28, 39, 75, 94], "continu": [10, 31, 40, 63, 85], "contrari": 41, "contrast": [24, 75], "contrib": 3, "contribut": [42, 94], "contributor": 94, "control": [17, 24, 28, 29, 39, 42, 67, 75, 101], "controlmast": 15, "controlpath": 15, "controlpersist": 15, "contus": 9, "convei": 10, "conveni": [24, 67], "convent": [27, 28, 94], "convers": [15, 24, 42, 57, 71], "convert": [20, 42, 67, 74, 94], "convolut": [3, 9], "cool": [39, 67, 74, 78], "cooper": 17, "coordin": [10, 42, 72], "coordonne": 82, "copi": [7, 12, 27, 39, 40, 42, 53, 71, 72, 90, 94, 99, 110], "copper": [99, 107], "cor": 24, "cord": [20, 24, 47, 94, 95, 109], "core": [12, 13, 15, 16, 17, 24, 39, 70, 94], "coreservic": [67, 79], "coretemp": 17, "corner": [39, 67], "corpor": [17, 110], "correct": [13, 39, 70, 75], "correctli": [35, 70, 94], "correl": [9, 22, 75], "correrr": 17, "correspond": [17, 24, 40, 94, 99, 110], "cost": 20, "could": [15, 17, 22, 24, 28, 39, 40, 63, 82, 98], "couleur": 20, "council": 110, "count": [4, 17, 31, 40], "countri": [100, 102], "coupl": [51, 75, 78], "cour": 22, "cours": [3, 6, 55, 56, 82, 95], "coursera": 39, "coursesoff": 22, "courtesi": 76, "courtoi": 110, "courvil": 22, "cov": 75, "cover": [6, 18, 40, 94], "cover_letter_r0": 110, "covid": 79, "cp": [12, 31, 38, 54], "cp27": 38, "cpp": 71, "cpu": [1, 13, 17, 38], "cpu_feature_guard": 17, "cp\u00e9": 22, "cq": 13, "crack": 88, "craig": 110, "craigslist": 97, "crash": [67, 94], "crawl": 24, "crc": 110, "creat": [1, 14, 15, 17, 24, 26, 28, 29, 31, 35, 40, 47, 51, 54, 56, 58, 59, 62, 64, 66, 70, 73, 74, 75, 76, 84, 85, 87, 90, 91, 94, 110], "creation": [6, 31, 56, 110], "credenti": [15, 16, 26, 27, 73, 76, 80, 98, 101, 102], "credit": [20, 22], "creer51": [15, 108], "creer52": [15, 108], "creer53": 15, "crepuq": 22, "crisp": 20, "crit": 17, "criteria": [19, 98], "critic": [10, 17, 24], "criugm": [11, 80, 110], "crop": [24, 94, 110], "cross": [44, 51, 94, 110], "crosslink": 17, "crosslinkr": 17, "crsng": 109, "crucial": [24, 43], "cryptograph": 39, "cryptonit": 40, "crysol": 63, "cs231n": 3, "csa": 75, "csf": [24, 75], "csh": 31, "csm": 24, "cspine": 24, "cspine_t1w": 24, "cspinesag_t1w": 24, "csrutil": 62, "csss": 98, "cst": 15, "csv": 87, "ctime": 31, "ctrl": [17, 28, 31, 35, 67], "ctrl_interfac": 102, "cu": 110, "cu113": 17, "cu17130": 6, "cuda": [13, 17, 55], "cuda11": 17, "cuda_7": 35, "cuda_gpu_executor": 17, "cuda_hom": 38, "cuda_visible_devic": [17, 36], "cudnn": [13, 17, 38, 55], "cudnn5": 55, "cup": 13, "cura": 101, "curat": [23, 28], "curi": 109, "curl": [17, 31, 38, 40, 54], "current": [4, 12, 17, 22, 24, 27, 28, 40, 51, 54, 74, 75], "curriculum": [10, 22], "curt": 9, "curv": [51, 72], "cushion": 75, "cusm": 98, "cuso4": 107, "custom": 87, "cut": [19, 22, 67, 99], "cut_buffer0": 64, "cv": [20, 22, 90], "cx": 67, "cyan": [32, 87], "cyberduck": 67, "cycl": [75, 78], "cylind": [44, 99], "cylinderrad": 44, "cylindersep": 44, "czf": 31, "d": [6, 9, 13, 15, 20, 21, 22, 31, 32, 35, 38, 39, 42, 55, 59, 67, 84, 87, 98, 100], "d0": 17, "d00": 17, "d0000000": 17, "d1": 17, "d2": 17, "d3cold": 17, "d3hot": 17, "daemon": [54, 67], "dai": [6, 10, 15, 20, 31, 32, 67, 76, 98, 100], "daili": [27, 78], "dam": 107, "dame": 98, "damm": 6, "daniel": 22, "danilo": 22, "daphn": 34, "dark": 94, "dash": 24, "dashboard": 27, "dat": 72, "data": [6, 7, 13, 15, 22, 25, 26, 31, 32, 34, 39, 40, 42, 43, 44, 46, 59, 62, 73, 74, 75, 94, 110], "data2d": 73, "data_extrassd_": 17, "data_extrassd_u108545": 17, "data_nvme_": [16, 17], "data_path": 13, "data_process": [25, 66], "data_shar": [25, 66], "databas": [15, 40, 75, 92, 94], "database_mri": 28, "datadim": 44, "datalad": [27, 40], "dataset": [3, 6, 17, 23, 27, 40, 42, 50, 94], "dataset_nam": 24, "datasettyp": 24, "datasynth": 44, "datatyp": 44, "date": [1, 10, 12, 15, 19, 24, 27, 28, 31, 70, 79, 82, 90, 94, 100, 110], "dav": 40, "davi": [15, 87, 98], "david": 22, "db": 9, "dbu": 40, "dbus_session_bus_address": 15, "dc": [6, 75], "dcm": 24, "dcm2nii": [15, 51, 87], "dd": [13, 31, 63, 90], "ddar": 40, "ddr4": 15, "de": [1, 15, 17, 20, 31, 40, 67, 87, 98, 99, 109, 110], "de000000": 17, "deactiv": [13, 73, 87, 102], "dead": 28, "deadlin": [20, 90, 109], "dear": 20, "deb": 38, "debian": [40, 54, 59, 66], "debit": 20, "debug": [67, 71, 73, 94], "debugg": 73, "debut": 71, "dec": [6, 9], "decid": [10, 24, 40, 109], "decis": 3, "decod": [3, 17], "decor": [39, 87], "dedic": 67, "dedupl": 40, "deem": 94, "deep": [4, 9, 17, 22, 30, 82, 109], "deeplearning4j": 37, "deepli": 29, "def": [13, 27], "default": [13, 15, 17, 20, 27, 28, 35, 40, 42, 57, 70, 94, 102], "defend": 10, "defin": [13, 15, 39, 42, 87, 94], "definit": [10, 17, 71], "deform": [75, 99], "defrag": 63, "degen": 24, "delai": [15, 67], "delet": [24, 26, 32, 39, 62, 67, 85], "deliber": 10, "demand": [21, 27, 99, 100, 109], "dementia": 6, "demo": [31, 35, 67, 74], "den": 24, "deni": [28, 39, 40], "denois": 24, "densiti": [24, 99], "depart": [10, 13, 15, 20, 21, 109], "depend": [3, 10, 15, 17, 20, 34, 35, 40, 42, 67, 70, 71, 82, 85, 87, 95, 98], "depsc": 72, "depth": [27, 39], "deriv": 40, "desc": 24, "desc_id": 24, "describ": [10, 13, 15, 24, 28, 39, 59, 94], "descript": [15, 16, 19, 26, 28, 39, 76, 78, 90, 94, 101], "design": [6, 51, 74, 78, 94, 107], "desir": 94, "desk": 15, "desktop": [15, 25, 70, 82, 101], "desktopnotifi": 40, "despit": [24, 40], "destin": [26, 42], "destroi": 62, "detach": [31, 39, 55], "detail": [10, 15, 20, 22, 24, 28, 39, 42, 75, 76, 80, 105], "detect": [3, 4, 17, 75, 78, 105], "detr": 6, "dev": [1, 12, 17, 35, 38, 63, 74, 87, 94, 105], "devcap": 17, "devcap2": 17, "devctl": 17, "devctl2": 17, "devel": 55, "develop": [0, 6, 29, 38, 39, 42, 67, 70, 71, 75, 79, 81, 85], "deviat": [41, 42], "devic": [17, 31, 35, 40, 63, 67, 85], "devicequeri": 35, "devsel": 17, "devsta": 17, "devtalk": 35, "df": [17, 31], "df000000": 17, "df080000": 17, "dge": [20, 21, 76, 93, 99], "dhall": 9, "di": 9, "diagnosi": [3, 24], "diagram": [67, 74], "dialog": 39, "diamet": [44, 78, 99], "dice": 3, "dicom": [12, 51, 67, 74, 79, 80], "did": 67, "didn": [28, 63], "dielectr": 75, "dieu": 98, "diff": [39, 75, 87], "diffeomorph": 42, "differ": [17, 20, 24, 26, 40, 47, 55, 56, 63, 70, 75, 94, 97], "differenti": [3, 24], "difficult": [22, 70, 75], "diffus": [15, 73, 75], "dig": 39, "digikei": 105, "dilat": 3, "dim": 42, "dim3": 32, "dimanch": 98, "dimens": [41, 42, 51, 78, 99], "dimension": 3, "dimitrijev": 22, "dipi": 73, "dir": [24, 102], "direct": [13, 39, 41, 79, 91], "directli": [20, 32, 39, 70, 71, 94], "directori": [12, 15, 26, 31, 35, 39, 40, 54, 55, 67, 70], "dirnam": [31, 67], "disabl": [17, 29, 51, 87, 102], "disable_ipv6": 102, "disadvantag": 67, "disc": 24, "discov": 29, "discoveri": [3, 77], "discrep": 110, "discret": [24, 42], "discrimin": [3, 34], "discs_dlabel": 24, "discuss": [10, 19, 29, 42, 94], "diseas": 24, "disentangl": 3, "disinfect": 80, "disintx": 17, "disk": [12, 13, 17, 31, 39, 40, 63], "disord": 9, "disp": 17, "displai": [17, 28, 31, 32, 39, 57, 64, 72, 73, 75, 94], "dispositif": 22, "disroot": 31, "dissect": 3, "dist": [17, 38, 44, 73], "distanc": [75, 78], "distil": 107, "distinct": 24, "distinguish": 24, "distort": [42, 75], "distrib": 54, "distribut": 73, "distro": [15, 40], "divers": 29, "divis": 105, "divx": 67, "django": [15, 23, 44, 67, 87], "djj": 6, "dkm": 17, "dl": [6, 22], "dlabel": 24, "dlactiv": 17, "dlp": 17, "dnf": 40, "do": [1, 3, 13, 15, 17, 18, 20, 24, 25, 26, 27, 28, 31, 32, 35, 39, 40, 42, 43, 47, 53, 55, 59, 62, 63, 67, 70, 76, 79, 84, 85, 90, 94, 95, 101, 102, 103, 110], "doc": [10, 13, 27, 38, 39, 57, 67, 90, 93, 94, 104, 105, 107], "docker": [39, 62], "doctor": 10, "docu": 43, "document": [3, 6, 13, 14, 15, 17, 18, 22, 25, 27, 31, 39, 42, 47, 49, 67, 70, 76, 80, 81, 82, 89, 90, 92, 100, 101, 102, 104, 110], "docx": [67, 84, 110], "doe": [10, 15, 21, 24, 28, 31, 32, 39, 42, 56, 67, 70, 73, 94, 98], "doesn": [3, 13, 18, 28, 40, 70], "doi": 6, "doina": 22, "doku": [41, 67], "domain": [15, 26, 31, 42], "domainadapt": 3, "don": [0, 13, 15, 17, 20, 27, 35, 39, 42, 53, 55, 63, 67, 70, 71, 88, 94, 100, 110], "donat": 110, "done": [1, 10, 19, 20, 28, 31, 32, 39, 42, 47, 55, 63, 73, 88], "donn\u00e9": 22, "doom": 74, "door": [39, 82, 105], "dorval": 98, "dossier": 98, "dot": [13, 20, 58, 75, 110], "dot_clean": 56, "doubl": [1, 15, 39, 63, 75], "down": [15, 31, 62, 67, 79, 94], "downgrad": [17, 67], "download": [12, 13, 14, 15, 17, 19, 20, 27, 35, 38, 40, 43, 50, 55, 62, 63, 64, 67, 70, 72, 75, 85, 102], "download_data": 80, "doxygen": [41, 70], "dp": 99, "dpi": 20, "dpuf": 38, "dq": 31, "dr": [6, 17, 110], "draft": [73, 94], "draftabl": 74, "drag": [14, 25, 67, 71], "draw": [73, 94], "drawback": 94, "drive": [14, 15, 16, 20, 25, 26, 42, 66, 75, 81, 92, 102, 109, 110], "driven": 3, "driver": [17, 35, 55, 105], "drm": 17, "drone": 3, "drop": [14, 15, 25, 31, 67, 71], "dropbox": [15, 40, 101], "dropdown": 28, "dropout": 3, "druschel": 9, "drvier": 38, "drwxr": 26, "ds001919": 59, "ds_store": 40, "dscale": 17, "dscl": 71, "dseg": 24, "dsel": 17, "dsi": 17, "dsim": 75, "dsv": 78, "dti": [31, 46, 75], "dtitk": 74, "dtitk_quicklookplugin": 67, "dtype": 17, "du": [15, 17, 22, 31, 40, 86, 98, 100, 110], "dual": 3, "dudler": 39, "due": [10, 39, 72, 99], "duke": [15, 17, 23, 24, 72, 79], "duo": 15, "duong": 9, "duplic": [40, 110], "dupont": [9, 99], "dupr": 39, "durat": [10, 28], "dure": [10, 15, 17, 29, 35, 40, 41, 42, 70, 71, 76, 78, 92, 94, 110], "duti": 78, "dw": 75, "dwi": [24, 75], "dwld": 59, "dx": 6, "dyck": 9, "dyld_library_path": 70, "dylib": [70, 71], "dynam": [41, 51, 63, 70, 75, 94], "dynamicaqua": 99, "dynload": 17, "d\u00e9cari": 15, "e": [12, 13, 15, 19, 20, 21, 22, 24, 25, 26, 27, 31, 32, 35, 39, 40, 42, 51, 53, 54, 56, 58, 63, 67, 70, 75, 82, 85, 87, 90, 94, 98, 107], "e00": 17, "e2ef822c744357a4ed16ec0c885100a3": 17, "e5": 15, "e7": 15, "each": [10, 13, 17, 20, 24, 27, 28, 39, 41, 42, 43, 51, 75, 85, 94, 97, 98, 110], "eap": [85, 102], "earli": [10, 20, 109], "earlier": [10, 100], "earthlink": 99, "eas": 94, "easi": [6, 20, 22], "easier": [39, 51, 67, 70, 94], "easiest": [27, 39], "easili": [67, 90], "easywma": 67, "ec": [6, 22], "ecc": 17, "ecg": 75, "echo": [3, 12, 15, 31, 32, 38, 67, 75, 87], "ecog": 59, "ecol": 100, "ecommerc": 57, "ecrc": 17, "ecrcchkcap": 17, "ecrcchken": 17, "ecrcgencap": 17, "ecrcgenen": 17, "ecs": 22, "ed25519": 28, "edema": 24, "edg": [22, 41], "edit": [0, 1, 17, 19, 20, 29, 31, 39, 63, 64, 66, 67, 70, 73, 76, 81, 87, 102, 110], "editor": [15, 39, 57, 67, 94, 102, 110], "edu": [6, 39, 110], "educ": [6, 14, 29, 85], "eduroam": [83, 102], "edward": 99, "ee": 109, "ee4a6455": 42, "eeg": 59, "eetlpprefix": 17, "ef": 15, "effect": [3, 39, 75, 110], "effici": [3, 17, 26, 76], "eg": [1, 15, 17, 21, 22, 24, 76, 110], "egl": 17, "ei": 67, "eill": 6, "either": [27, 28, 78, 94], "eject": 67, "el": 67, "ele1600a": 22, "ele4501a": 22, "ele6502": 22, "ele6503": 22, "ele6506": 22, "ele8500": 22, "ele8812": 22, "electr": [13, 21, 22], "electron": [4, 20, 110], "electroniqu": 99, "element": [24, 32, 75, 78], "element1": 32, "element2": 32, "element3": 32, "elif": 110, "elig": [20, 98, 100], "elizabeth": 39, "ella": 15, "elm": 80, "els": [15, 17, 32, 39, 40, 70, 85, 87], "elsevi": 110, "elsewher": 40, "em": 15, "emachineshop": 99, "email": [13, 14, 20, 24, 28, 39, 67, 75, 79, 80, 83, 85, 110], "email_adress": 24, "emb": 94, "emerg": [28, 42], "emergencypowerreduct": 17, "emergencypowerreductioninit": 17, "emma": 28, "emphasi": 17, "emplac": 71, "employe": [85, 89, 98, 99], "employ\u00e9": 85, "empow": 29, "empti": [17, 24], "empty_cach": 70, "emul": 17, "emuls": 75, "en": [1, 20, 22, 31, 39, 41, 57, 67, 78, 80, 82, 98, 105, 109], "en_ca": [15, 87], "enabl": [17, 24, 27, 31, 67, 71, 110], "encod": [3, 6, 17, 75], "encount": 67, "encourag": [20, 29], "encrypt": 27, "end": [10, 12, 14, 15, 18, 19, 20, 28, 32, 38, 40, 42, 58, 62, 67, 84, 85, 100], "endnot": [15, 67], "endpoint": 17, "endroit": 1, "enforc": 3, "engin": [6, 10, 12, 13, 20, 21, 22, 29, 75, 110], "english": [15, 22, 28, 87, 97], "enhanc": 94, "enlarg": 3, "enough": [10, 42, 102], "enrol": 10, "ensembl": 3, "ensur": [10, 13, 22, 24, 27, 39, 40, 94], "enter": [15, 26, 28, 39, 53, 63, 67, 71, 76, 80, 85, 105], "entercompli": 17, "entermodifiedcompli": 17, "enthough": 73, "entir": [24, 97], "entr": 75, "entri": [15, 76], "entrust_g2_ca": 102, "env": [17, 31, 39, 54, 75], "env_nam": 13, "environ": [6, 12, 15, 17, 25, 31, 35, 36, 47, 67, 70, 71], "environemnt": 17, "envoy": 1, "eo": 15, "eof": [15, 40], "epistem": 3, "epoch": 17, "epoxi": 99, "epyc": 15, "eq": 87, "equalizationcomplet": 17, "equalizationphase1": 17, "equalizationphase2": 17, "equalizationphase3": 17, "equat": 3, "equip": 82, "equiti": 29, "equival": [13, 67], "eras": [39, 40], "erod": 75, "error": [13, 15, 17, 31, 35, 39, 40, 42, 47, 70, 75, 87, 94], "escienc": 74, "essent": 38, "essenti": [10, 24, 35, 110], "est": [1, 15], "establish": [15, 17], "esthet": 74, "estim": [3, 20, 42, 75], "et": [1, 6, 20, 22, 34, 75, 98, 109], "etc": [6, 10, 15, 17, 20, 21, 22, 24, 25, 27, 28, 31, 35, 38, 40, 59, 63, 66, 67, 75, 76, 82, 84, 85, 87, 94, 96, 100, 102, 103, 110], "etcher": 102, "ethanjperez": 3, "ethernet": [21, 28, 75, 102], "ethic": 28, "ethnic": 75, "etudi": [20, 109], "etuvisi": 100, "eu": 6, "eula": 35, "europ": 109, "european": 6, "eva": [22, 28, 79], "evalu": [3, 10, 107], "evan": 39, "even": [10, 15, 26, 31, 40, 55, 67, 70, 76, 102], "event": [1, 15, 67, 76, 90], "ever": [15, 91], "everi": [6, 10, 15, 24, 26, 28, 32, 39, 40, 41], "evernot": 67, "everybodi": 39, "everyon": [10, 14, 31, 39, 40, 91, 110], "everyth": [13, 39, 67, 110], "everytim": 73, "everywher": 31, "evolv": [24, 82], "ex": [29, 63], "exact": 15, "examin": [27, 98], "exampl": [1, 3, 10, 12, 13, 15, 17, 20, 22, 26, 27, 29, 31, 32, 39, 40, 53, 54, 55, 56, 57, 62, 67, 72, 73, 79, 90, 94, 100, 110], "excel": [39, 63, 67, 73, 98, 110], "excellemd": 98, "except": [28, 67], "exception": 15, "exchang": [75, 90], "excit": 75, "exclud": 31, "exclus": 94, "exec": [15, 31], "execut": [13, 26, 31, 36, 42, 54, 55, 70, 71], "exempt": [22, 100], "exercis": 22, "exist": [22, 24, 28, 31, 32, 35, 67, 87, 94, 110], "exit": [17, 54, 55, 63, 79], "expand": [40, 70], "expandr": 67, "expans": 17, "expect": [10, 40], "expens": 20, "experi": [1, 10, 17, 39, 76, 78, 90, 92, 94], "experienc": 15, "expert": 24, "expf": 72, "expir": 72, "explain": [3, 6, 10, 40, 94], "explainshel": 31, "explan": [3, 39], "explicitli": 35, "explor": [3, 26, 28, 29, 75], "exponenti": 42, "export": [13, 15, 17, 20, 27, 35, 38, 48, 50, 51, 66, 70, 71, 84, 87, 108, 110], "express": [17, 110], "exp\u00e9rienc": 100, "ext": [31, 42], "ext_anat": 42, "extens": [6, 32, 40, 62, 63, 79, 110], "extern": [17, 21, 24, 40, 67, 94], "extfmt": 17, "extra": [17, 22, 40, 43, 67, 78, 85], "extract": [42, 51, 67], "extrassd": 17, "extrem": [10, 39, 75], "extrud": 101, "extsynch": 17, "exttag": 17, "exttphcomp": 17, "ezyfit": 72, "f": [13, 17, 24, 31, 32, 39, 40, 42, 54, 79, 84, 87], "f000": 17, "f0000000": 17, "f1": [35, 67], "f1000000": 17, "f1080000": 17, "f9000000": 17, "f9tcxbzm1430400825724": 109, "fa000000": 17, "fa080000": 17, "fabric": 108, "face": 78, "facebook": 67, "facil": [80, 82], "factor": [42, 75, 79, 110], "faculti": [0, 109], "facult\u00e9": 109, "fahmiesalleh": 67, "fail": [10, 28, 39, 94, 102], "failur": [79, 94], "fair": 22, "fall": [10, 17, 22], "fals": 39, "familiar": [40, 91, 94, 95], "fan": 17, "fancier": 0, "far": 67, "fashion": 3, "fast": [3, 16, 17, 42, 67, 98], "fastb2b": 17, "faster": [12, 13], "fatal": 39, "fatalerr": 17, "favicon": 74, "fbc1": 17, "fbirn": 107, "fchollet": 33, "fcp": 17, "fdisk": 31, "featur": [4, 17, 31, 39, 57, 67, 70, 75, 94], "feb": [6, 26, 27], "fedora": 40, "fee": [20, 22], "feed": 40, "feedback": 10, "feel": [1, 29, 81, 88], "fehl": 9, "fellow": 81, "fellowship": [90, 109, 110], "femal": [24, 105], "fepegar": 75, "ferguson": [9, 15], "fernandez": 9, "fern\u00e1ndez": 6, "ferri": 22, "fetch": [39, 54], "few": [10, 24, 67, 94, 98], "ff": 87, "fi": [32, 39, 87], "fiberglass": 99, "fibr": 75, "fichier": 31, "field": [6, 22, 41, 47, 49, 72, 75, 79, 80, 107], "fieldprob": 75, "fiever": 98, "fig": [73, 75, 110], "fignum": 73, "figur": [20, 67, 73], "figurecanva": 73, "figurecanvasagg": 73, "fiji": 4, "file": [12, 14, 15, 17, 19, 20, 24, 25, 26, 27, 28, 35, 38, 43, 44, 51, 56, 60, 62, 64, 66, 70, 72, 73, 80, 84, 87, 94, 101, 102, 108, 109, 110], "file_dest": [31, 42], "file_nam": [32, 39], "file_src": [31, 42], "filemanag": [78, 102], "filemod": 39, "filenam": [17, 24, 31, 32, 39, 40], "filesystem": 17, "filetyp": 40, "filezilla": [12, 79], "fill": [10, 14, 15, 20, 22, 24, 28, 32, 76, 82, 86, 100], "film": 57, "film_lay": 3, "filter": 40, "fin": 1, "fin41": 99, "final": [10, 24, 26, 67, 110], "final_data_t2": 13, "financ": 79, "find": [0, 10, 13, 15, 29, 32, 39, 40, 42, 55, 63, 66, 67, 71, 74, 82, 101, 103], "find_mri": 79, "finder": [15, 25, 26], "findsmb": 31, "fine": 26, "fingerprint": 3, "finish": 15, "fink": 105, "firefox": 67, "firmwar": 17, "first": [15, 17, 19, 20, 22, 24, 28, 32, 40, 42, 59, 62, 67, 79, 80, 90, 94, 109, 110], "firstli": 20, "fit": [7, 20, 41, 72, 75], "five": [32, 67], "fix": [10, 17, 40, 42, 56, 67, 72, 75, 94], "fixed_imag": 42, "fixedcenterofrotationaffinetransform": 42, "fixedimag": 42, "fixedparamet": 42, "fixedpoint": 42, "fizzylog": 17, "flag": [15, 17, 35, 39, 40, 54, 55, 70], "flake8": 94, "flameshot": 74, "flash": 102, "fleuri": 98, "flight": 20, "flip": 24, "float": 44, "float16": 17, "float32": 17, "float64": 17, "flow": [3, 39], "flreset": 17, "fluid": [3, 24], "fma": 17, "fmap": 24, "fmedian": 41, "fmri": 46, "fmrib": [46, 47, 49, 67], "fmriprep_2": 24, "foam": 75, "fobjc": 70, "focu": [10, 27, 82, 94], "focus": [3, 75, 94], "foia": [27, 76], "fold": 67, "folder": [13, 14, 15, 17, 20, 24, 25, 26, 27, 32, 35, 39, 42, 43, 50, 53, 56, 66, 70, 71, 75, 90, 94, 109], "folder_dest": 31, "folder_nam": 26, "folder_shar": 25, "folder_sourc": 31, "foldernam": 67, "foldershar": 63, "follow": [1, 8, 10, 12, 13, 14, 15, 17, 18, 20, 23, 24, 27, 28, 29, 32, 38, 39, 40, 41, 42, 45, 46, 47, 51, 54, 55, 59, 63, 66, 67, 70, 71, 72, 78, 82, 84, 86, 90, 94, 101, 102, 110], "fomblin": 99, "fond": 110, "fondat": 109, "font": [72, 94], "fontnam": 72, "fontsiz": 72, "fontweed": 67, "food": 20, "foot": 99, "forc": [15, 70, 73], "foreign": [22, 109], "forerunn": 31, "forg": [40, 47], "forget": [43, 110], "form": [10, 20, 22, 26, 54, 76, 82, 100], "formal": [10, 24], "format": [0, 6, 10, 17, 20, 22, 24, 39, 40, 42, 48, 51, 90, 94, 102], "fortun": 39, "forum": [3, 67, 75, 79], "forward": [3, 17, 19, 28, 39, 47, 55, 64, 94], "fossdaili": 31, "found": [7, 8, 10, 15, 17, 20, 24, 32, 41, 42, 56, 67, 82, 87], "foundat": [22, 109, 110], "four": 70, "fourier": 6, "fov": 75, "fr": [14, 17, 22, 43, 98], "fr4": 99, "fragil": 27, "framadrop": 31, "frame": 75, "framework": [3, 4, 6, 55, 67, 75], "franc": [20, 97, 109], "francai": 100, "francoeur": 22, "frank": 22, "fran\u00e7ai": [15, 22], "fran\u00e7ais": 97, "fraser": 29, "free": [1, 3, 15, 20, 59, 60, 63, 67, 81, 82, 88, 99], "freepdfconvert": [67, 74], "freesurf": 15, "freez": [56, 67, 73], "french": [6, 15, 22, 28, 82], "frequenc": [42, 78], "fresh": [35, 40, 70], "freund": 9, "freundcontain": 99, "fri": [17, 27], "fridai": 99, "friendli": [4, 24, 67, 91], "friston": 9, "from": [3, 6, 9, 10, 13, 15, 17, 24, 29, 32, 38, 40, 42, 43, 47, 48, 55, 59, 62, 70, 72, 73, 74, 75, 76, 78, 85, 87, 94, 97, 99, 100, 102, 108, 109, 110], "front": [9, 20, 78], "frontier": 110, "frq": 109, "frqnt": 109, "frsq": 109, "fsl": [15, 42, 47, 49, 87], "fslchfiletyp": 44, "fslconf": [66, 67, 87], "fsldir": [66, 67, 87], "fsley": [24, 84, 87], "fslhd": 32, "fslinstal": 66, "fslmath": [41, 67], "fslview": [15, 66, 84], "fslwiki": 49, "fstab": 66, "ftp": 67, "full": [25, 27, 39, 40, 42, 43, 55, 67, 79, 94], "fulli": [3, 24, 67, 78], "fun": 74, "func": 24, "function": [3, 22, 67, 87, 94, 110], "functor": 75, "fund": [20, 110], "fundament": [3, 22, 95], "fundu": 3, "funni": 67, "further": [31, 94, 100], "furthermor": 71, "fusion": 22, "futur": [22, 24, 110], "fxt8sj831osqfo0": 101, "f\u00e9d\u00e9ral": 100, "g": [6, 13, 15, 20, 21, 24, 25, 26, 27, 31, 32, 35, 39, 40, 42, 50, 56, 63, 67, 70, 75, 82, 87, 90, 94, 98, 107], "g10": 99, "g6": 40, "ga102": 17, "ga102gl": 17, "ga343ea76c8": 40, "gadgetron": [6, 75], "gain": 40, "galeri": 1, "gamma": 44, "ganderso": 110, "gang": 39, "gantt": 74, "ganttproject": 74, "garbag": 70, "garcia": 6, "gaspard": 6, "gauss": 42, "gb": [14, 39, 75, 87], "gbm2330": 22, "gbm3100": 75, "gbm6103a": 22, "gbm6330": 22, "gbm6700": 22, "gbm6953ee": 22, "gbm8378": 22, "gbm8605": 22, "gbm8770": 22, "gbm8802": 22, "gbm8871": 22, "gc": [39, 70, 87, 100, 109], "gcal": 76, "gcc": [13, 17, 54], "gcc_preprocessor_definit": 71, "gcr": 55, "gcrypt": 40, "gd": [39, 87], "gdoc": 110, "gdrive": 84, "ge": 28, "ge_password": 15, "ge_usernam": 15, "geda": 105, "geek": 67, "geeksforgeek": 73, "geforc": 17, "gender": 29, "gener": [1, 3, 10, 14, 15, 17, 19, 24, 26, 27, 28, 37, 51, 70, 74, 75, 85, 91, 94, 98], "generatedbi": 24, "geneva": 20, "genie06": 15, "genpath": 12, "geometri": 15, "gerbv": 105, "germani": 20, "gervai": 22, "gestion": 15, "get": [3, 10, 12, 14, 15, 17, 20, 26, 31, 32, 35, 38, 39, 40, 54, 59, 63, 64, 66, 67, 75, 80, 81, 84, 87, 92, 95, 98, 100, 102, 110], "getent": 63, "getkap": 74, "getopt": 32, "ghc": 40, "ghost": 75, "gi": 17, "gid": [40, 63], "gif": [67, 74], "gifmak": 73, "gist": [17, 31, 67, 74], "git": [13, 15, 17, 24, 26, 27, 28, 30, 31, 32, 38, 53, 54, 59, 62, 67, 73, 87, 92, 94, 95], "gitattribut": 40, "gitconfig": 39, "gitea": [27, 28], "github": [0, 3, 6, 13, 15, 17, 21, 24, 27, 29, 30, 31, 33, 38, 54, 57, 59, 63, 67, 70, 73, 74, 80, 81, 91, 92, 95, 110], "gitignor": [39, 40], "gitk": 39, "gitolit": 27, "gitolot": 27, "gitref": 39, "give": [13, 15, 20, 31, 39, 40, 63, 71, 75, 79, 98, 100], "given": [3, 10, 20, 22, 32, 39, 42, 54, 76, 80, 82, 99, 110], "gl": [17, 39, 66, 67, 80, 87], "glacier": 40, "glasgow": 20, "glass": [67, 99], "glaucoma": 3, "glg": [39, 87], "glia": 75, "glitch": 40, "global": [39, 50, 73], "glocker": 3, "gluta": 99, "gm": 24, "gmail": [17, 27, 67, 93, 100, 110], "gmf": 98, "gmfqe": 98, "gnu": [17, 70], "go": [0, 1, 10, 12, 14, 15, 17, 18, 20, 26, 28, 35, 39, 42, 53, 56, 63, 67, 70, 71, 85, 94, 98, 101, 105, 110], "goal": 94, "goer": 20, "golai": 6, "gone": 67, "goo": [66, 80], "good": [1, 10, 20, 22, 24, 39, 57, 67, 70, 74, 94, 98, 99, 110], "goodi": 67, "goodresearch": 74, "googl": [1, 3, 15, 19, 20, 75, 80, 81, 92, 94, 98, 101, 105, 109], "googleapi": 38, "googlebrain": 75, "googlecalendar": 1, "gorvett": 28, "got": [39, 88], "goussard": 22, "gouv": [98, 109], "gov": [49, 75, 107, 110], "gp": [39, 87, 98], "gpg": [28, 38], "gpu": [1, 13, 35, 38, 55, 110], "gpu_devic": 17, "grad": [10, 22], "grade": [10, 90], "gradient": 3, "gradientstep": 42, "graduat": [10, 22, 82, 95, 109], "gradut": 22, "graham": [13, 87], "grai": [3, 24, 73], "grame": [26, 28], "grames_password": 15, "grames_usernam": [12, 15, 26], "grammarli": 110, "granada": 20, "grand": 20, "grant": [20, 82, 85], "graph": [39, 87], "graphic": [22, 34, 35, 38, 70, 110], "graphiscan": 20, "grapho": 22, "graphviz": 67, "grappelli": 15, "grayscal": 48, "great": [22, 31, 39, 74, 110], "greec": 20, "green": [32, 51], "grei": [15, 32], "grep": [15, 17, 31, 32, 87], "grid": [12, 72], "griffintown": 98, "gro": [9, 22], "ground": 3, "group": [6, 13, 20, 29, 63, 71, 80, 94, 102, 109], "groupenam": 63, "groupmembership": 71, "groupnam": 63, "grova": 22, "grsnc": 109, "gruber": 6, "gsp": 17, "gt": 17, "gtx": [15, 17], "gtx1080": 38, "guai": 28, "guenther": 27, "guerin": 75, "guest": 85, "gui": [4, 35, 54, 67, 70], "guid": [3, 6, 10, 20, 30, 37, 39, 57, 70, 71, 74, 78, 82, 101], "guidebook": 24, "guidelin": [10, 94], "guillimin": [13, 87], "guitton": 22, "guo": 6, "guzman": 110, "gv": 40, "gxfxcxdxbxegedabagac": 87, "gz": [12, 13, 24, 27, 31, 32, 38, 40, 41, 42, 70], "g\u00e9nie": 22, "g\u00e9n\u00e9ral": 98, "g\u00e9n\u00e9raux": 22, "g\u00fcnther": 6, "h": [6, 15, 17, 31, 40, 42, 71, 87, 110], "h2v": 98, "h_ax": 72, "h_fig": 72, "ha": [1, 4, 5, 10, 12, 13, 14, 15, 17, 26, 28, 29, 32, 39, 40, 41, 42, 47, 55, 63, 67, 78, 82, 94, 100, 103, 110], "hack": 70, "had": [17, 67, 98], "half": 63, "hand": [10, 39, 67], "handbook": 40, "handbrak": 67, "handl": 40, "handler": 67, "hang": 53, "hansen": 109, "happen": [15, 17, 39, 41], "hard": [16, 22, 38, 39, 40, 63, 67], "hardwar": [6, 82], "harvard": 39, "hash": [39, 102], "hashicorp": 62, "hassl": 20, "have": [10, 13, 14, 15, 17, 19, 20, 24, 26, 27, 28, 31, 35, 39, 40, 42, 44, 47, 51, 53, 55, 56, 62, 63, 67, 70, 71, 75, 76, 80, 82, 94, 98, 99, 100, 102, 105, 110], "haven": [39, 56, 67], "havsteen": 6, "hawaii": 20, "hayashi": 9, "hc": [24, 31], "hcifst": 15, "hd": 67, "hdf5matrix": 17, "hdiutil": 67, "hdpe": 99, "hdr": 44, "hdrlogcap": 17, "he": [12, 55], "head": [6, 27, 28, 39, 40, 77, 78, 87, 110], "header": [39, 70, 87, 99], "header_search_path": 71, "headerlog": 17, "health": [98, 110], "healthi": [24, 75], "heart": 110, "heatertimeout": 102, "heather": 110, "heavi": 22, "heed": 102, "height": 20, "held": [19, 22], "helen": 75, "helio": 13, "help": [15, 17, 20, 24, 31, 39, 67, 94], "hemi": 94, "henc": [10, 75], "hendriks": 6, "her": 79, "here": [0, 1, 5, 8, 10, 13, 15, 17, 20, 23, 24, 25, 26, 27, 28, 29, 32, 39, 40, 42, 44, 47, 53, 55, 62, 63, 67, 70, 72, 76, 77, 78, 79, 80, 82, 85, 86, 90, 92, 94, 98, 99, 102, 104, 107, 109, 110], "hereaft": 70, "hernandez": 6, "hesit": [42, 67, 94], "hetero": 3, "hex": 44, "hh": [13, 31], "hi": 28, "hidden": [3, 29, 56, 70], "hierarchi": 24, "high": [3, 6, 13, 17, 20, 39, 42, 44, 78, 94, 99], "higher": [15, 24, 40, 42, 50, 99], "highest": 20, "highli": [10, 109], "him": 110, "hint": 67, "hippocamp": 3, "histologi": 26, "histori": 39, "hit": [31, 67], "hofmann": 39, "hola": [32, 67], "hold": [31, 67, 72], "holidai": 1, "holist": 3, "home": [12, 13, 15, 17, 26, 31, 44, 56, 63, 67, 78, 84, 87, 100, 101], "homefold": 43, "homepag": [98, 99], "homo": 24, "homogen": 41, "hong": 20, "honolulu": 20, "hook": [26, 40], "hope": 67, "horo": 67, "hospit": 98, "hospitali": 98, "host": [13, 15, 17, 25, 28, 31, 47, 54, 55, 63, 110], "host_nam": 31, "hostnam": [15, 16, 31, 39, 101], "hot": [17, 75], "hour": [10, 22, 31, 39, 98], "hous": [20, 78, 97, 107], "how": [3, 6, 10, 13, 15, 17, 20, 24, 29, 31, 40, 42, 53, 54, 55, 59, 67, 70, 72, 75, 79, 80, 82, 86, 92, 94, 98, 101, 110], "howev": [10, 12, 15, 39, 40, 42, 44, 55, 75, 85, 100], "howtologin": 79, "hp": 18, "hpc": [13, 87], "hr": 10, "ht": 39, "ht203129": 67, "ht5856": 67, "htm": 99, "html": [20, 32, 37, 38, 39, 41, 42, 49, 57, 63, 66, 67, 70, 74, 75, 94, 98, 99, 110], "htmlcomponentfactori": 67, "htmlrender": 67, "htop": 17, "http": [1, 3, 6, 13, 14, 15, 17, 20, 22, 24, 27, 28, 31, 32, 33, 35, 37, 38, 39, 40, 41, 42, 43, 49, 53, 54, 55, 57, 59, 60, 62, 63, 66, 67, 70, 73, 74, 75, 78, 79, 80, 82, 86, 87, 89, 90, 93, 98, 99, 100, 101, 102, 104, 105, 107, 108, 109, 110], "httpalso": 40, "htwtoc": 110, "hub": [54, 55], "huge": [42, 67], "huie": 9, "human": [3, 22, 24, 31, 45, 110], "hup": 31, "hxx": 42, "hyperlink": 67, "hyperpolar": 6, "hypothes": 10, "hypothet": 94, "hz": 72, "h\u00f4pital": 98, "h\u00f4tel": 98, "i": [0, 1, 3, 4, 6, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 24, 25, 26, 27, 28, 29, 31, 32, 35, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 50, 51, 54, 55, 56, 59, 62, 63, 64, 67, 70, 71, 72, 73, 75, 76, 78, 79, 80, 81, 82, 87, 88, 90, 94, 98, 99, 100, 101, 102, 107, 109, 110], "i386": 70, "i7": 15, "ianlunn": 67, "iat": 29, "ic": 75, "icloud": 15, "icm": 75, "icml": 20, "icmmri": 78, "icon": [0, 15, 28, 51], "icv": 75, "id": [13, 15, 17, 24, 39, 71, 85, 99], "id_ed25519": 28, "id_rsa": [39, 53], "idea": [10, 15, 94], "ideal": [24, 94, 110], "ident": [51, 102], "identif": 24, "identifi": [13, 15, 19, 39, 75, 94], "idp91444064": 63, "ie": 99, "ieee": [3, 110], "ieeexplor": 3, "ieeg": 59, "ift6135": 22, "ift6145": 22, "ift6167": 22, "ift6268": 22, "ift6269": 22, "ift6760": 22, "ig": 60, "ii": [3, 20, 22], "iii": 22, "ilana": 79, "ilastik": 4, "illustr": 67, "im1": 32, "im2": 32, "im3": 32, "imac": 82, "imag": [1, 4, 6, 9, 20, 24, 27, 28, 30, 34, 42, 45, 46, 47, 48, 51, 55, 63, 70, 71, 73, 78, 82, 94, 102, 107, 110], "image_captur": 67, "image_id": 54, "imagecaptureextension2": 67, "imagedimens": 42, "imagej": 75, "imagemagick": 67, "imageregistr": 42, "imageri": 22, "imagesedit": 31, "imagin": 94, "imaging_processing_softwar": 41, "imap": 86, "img": [44, 102], "immedi": 67, "impact": [3, 42, 75, 110], "impair": 9, "imper": 39, "imperi": 3, "imperialcollege4slsh2feb2018": 75, "implement": [6, 41, 75, 94], "impli": 94, "implic": 10, "implicitli": 27, "import": [1, 10, 17, 20, 22, 24, 39, 51, 60, 70, 73, 76, 79, 94, 102, 110], "imposs": 40, "impregn": 78, "impress": 20, "improv": [0, 3, 24, 41, 94], "inam": 31, "inch": [20, 78, 99], "incl": 109, "includ": [8, 10, 14, 15, 17, 24, 26, 28, 39, 40, 42, 70, 71, 80, 81, 82, 90, 94, 110], "inclus": [13, 29, 70, 94], "incom": 86, "incompat": 94, "incorpor": 110, "increas": [3, 20], "increment": 94, "incur": 20, "inde": 72, "independ": 75, "index": [24, 40, 62, 67, 74, 100], "indic": [1, 15, 19, 24, 32, 48, 75, 79, 88, 94, 110], "individu": 73, "individual_plots_subj": 72, "induc": 75, "industri": [99, 109], "inf1010": 22, "inf6141": 22, "inf6953h": 22, "inf8215": 22, "inf8225": 22, "inf8245": 22, "inf8250": 22, "infer": 3, "inflamm": 75, "influenc": 42, "info": [1, 13, 20, 32, 39, 40, 67, 70, 75, 80, 82, 84, 86, 97, 98], "infograph": 29, "inform": [0, 13, 15, 17, 20, 24, 39, 40, 41, 42, 55, 79, 81, 82, 85, 89, 94, 100, 101], "informatiqu": 21, "infrastructur": [12, 17, 81, 82, 91], "inf\u00e9rieur": 1, "ingenieur": 22, "inhomogen": 75, "init": [39, 40, 62], "initi": [6, 10, 22, 27, 39, 40, 44, 87, 94], "initramf": 35, "injuri": [24, 109], "ink": 18, "inkscap": 67, "inlin": 62, "inner": 75, "innocu": 40, "innov": [6, 110], "inod": 40, "inotifi": 40, "inprogress": 17, "input": [26, 67, 84, 94], "input_imag": 41, "inputfilenam": 51, "inria": 43, "insan": 6, "insensit": 31, "insert": [63, 64, 78, 110], "insid": [15, 24, 26, 28, 31, 40, 51, 54, 55, 64, 67, 75, 90, 94, 110], "insight": 42, "insighttoolkit": 70, "inspect": [17, 24], "inspector": 67, "inspf": 72, "inspir": [70, 72, 75, 110], "instal": [13, 17, 28, 31, 55, 57, 66, 67, 71, 72, 75, 85, 87, 94, 102, 105, 110], "install_java": 38, "install_sct": 54, "installing_vtk_on_mac_os_x": 70, "instead": [10, 13, 17, 20, 24, 26, 27, 28, 39, 40, 53, 67, 70, 71, 75, 82, 84, 94, 102], "institut": [13, 20, 22, 24, 72, 85, 98, 109, 110], "instruct": [8, 14, 15, 17, 24, 39, 40, 45, 46, 47, 59, 63, 72, 78, 79, 85, 94, 101, 109, 110], "instructions_3dprint": 101, "int": 17, "integ": [13, 24], "integr": [31, 47, 59, 67, 73, 75], "intel": 15, "intellig": [22, 110], "intend": [0, 10, 40], "intens": [15, 22, 42], "intent": 94, "inter": [22, 100], "interac": 76, "interact": [4, 13, 21, 39, 54, 62, 73, 74], "interest": [10, 22, 39, 90], "interfac": [13, 28, 67, 101], "intern": [1, 6, 15, 18, 29, 40, 54, 70, 72, 76, 78, 80, 81, 82, 85, 92, 94, 100, 101, 102], "internation": 82, "international": 100, "internet": [3, 6, 13, 28, 67, 85, 86, 99], "internship": [90, 94, 95], "interpol": [24, 42, 51], "interpret": 42, "interrupt": [17, 40], "interupt": 15, "intervertebr": 24, "intramedullari": 3, "intranet": [20, 67], "introduc": [67, 94], "introduct": [3, 6, 7, 10, 22, 39, 57], "intuit": 6, "intx": 17, "inum": 40, "invari": 75, "invers": [39, 75], "investig": [9, 27, 75], "invit": [10, 76, 100], "inviti": 76, "invit\u00e9": 85, "invoic": [89, 99], "involv": [10, 22, 90, 94, 110], "inxquartz": 54, "io": [6, 13, 24, 31, 33, 38, 40, 51, 55, 57, 63, 70, 74, 85], "ioff": 73, "ion": 73, "ip": [18, 31, 39], "ip_address": 31, "ip_serv": 66, "iphon": 67, "ipv6": 102, "ipython": 73, "irina": 22, "irmf": 22, "irq": 17, "irrelev": 10, "is_avail": 17, "isa": 17, "ismrm": 6, "isn": [13, 71], "iso": 63, "isocent": 78, "isol": [55, 94], "isrt": 109, "issu": [15, 21, 24, 27, 29, 39, 40, 56, 67, 91], "issue_numb": 94, "ital": 75, "itali": 20, "item": [15, 54, 67], "iter": [42, 109], "itk": 41, "itk_build_all_modul": 70, "itk_has_stltr1_tr1_type_trait": 70, "itk_has_stltr1_type_trait": 70, "itk_use_64bits_id": 70, "itkbuild": 70, "itkdebug": 70, "itkmatrixoffsettransformbas": 42, "itksnap": [15, 67], "itksoftwareguid": 42, "itkvtk": 70, "itkvtkglu": 70, "its": [10, 27, 31, 40, 73, 85, 94, 98, 99, 110], "itself": [39, 67, 94, 110], "iv": 22, "ivado": [1, 109, 110], "ivadom": [1, 17, 75, 94], "j": [6, 9, 13, 50, 70, 109], "ja": 6, "jacqu": 22, "jacquelin": 109, "jalbert": 22, "jame": 22, "jammi": 17, "jan": 6, "januari": 42, "jar": 99, "jarrett": 15, "jason": 75, "java": [38, 72], "java8": 38, "jc": 9, "jca": 110, "jcohen": [13, 27, 28, 39, 87, 101], "jdk1": 38, "jean": [15, 22, 98], "jekyllbootstrap": 57, "jekyllrb": 57, "jemri": 6, "jenkinson": 7, "jetbrain": 39, "jeton": 109, "jf": 9, "jfsanto": 17, "jmcglone": 57, "jmlr": [3, 110], "jmri": 110, "jmrui": 6, "job": [10, 17, 40], "jobid": 13, "join": [76, 91], "joint": 3, "joliet": 67, "jonathan": 22, "joplin": [26, 47, 87], "joshua": 28, "journal": [26, 90], "jpeg": 20, "jpg": 67, "jr": 9, "json": 80, "jsp": 99, "juif": 98, "jul": 9, "juli": [20, 39, 75], "julia": 39, "julien": [3, 12, 15, 18, 22, 25, 39, 75, 79, 82, 87, 101, 110], "jun": [17, 26], "junction": 24, "june": 20, "jupyt": [6, 17, 55], "jurajsplayground": 63, "juri": [10, 22], "just": [0, 10, 15, 17, 20, 27, 28, 32, 39, 40, 51, 54, 55, 63, 66, 71, 82, 85, 102, 107, 110], "justin": 110, "jv": 39, "j\u00fclich": 6, "k": [9, 15, 17, 25, 26, 42, 75], "kahoot": 74, "kaleem": 22, "kapton": 99, "karimi": 9, "karthik": 22, "kb": 67, "ke": 22, "keep": [17, 20, 24, 26, 28, 51, 56, 63, 76, 92, 94, 99, 110], "kei": [18, 24, 25, 26, 28, 38, 40, 53, 67, 110], "kendal": 22, "kept": [24, 28], "kera": [3, 17, 33], "kernel": [17, 41], "key_mgmt": 102, "keyboard": [58, 82], "keychain": [15, 67], "keygen": [28, 31, 39, 53], "keynot": [20, 90, 110], "keypress": 64, "kg": 97, "kickstart": 40, "kijjji": 97, "kill": [15, 17, 67], "killal": [31, 67], "kind": [20, 39, 44, 94], "kingdom": 20, "kiri": 22, "kirk": 15, "kirsch": 6, "kit": [15, 75, 78], "kitwar": 42, "kjw0612": 33, "klausschmier": 75, "knee": 3, "kneighborhood": 42, "know": [1, 3, 6, 10, 15, 18, 20, 24, 27, 39, 80, 82, 94, 109], "knowledg": [3, 39], "known": [39, 67, 85, 102, 110], "ko": 17, "koller": 34, "kong": 20, "korea": 20, "kotter": 9, "kqj3jimatpwzowc1a": 80, "kumar": [9, 34], "kyritsi": 9, "l": [1, 6, 9, 13, 17, 18, 22, 26, 27, 28, 31, 32, 42, 82, 87, 98, 107], "l0": 17, "l1": 17, "l1_pm_substat": 17, "l1subcap": 17, "l1subctl1": 17, "l1subctl2": 17, "la": [20, 22, 28, 87, 109], "lab": [1, 7, 10, 13, 19, 20, 21, 28, 29, 39, 47, 75, 81, 91, 95, 96, 109, 110], "label": [3, 34, 40, 42, 67, 110], "laboratoir": 22, "lacadi": 98, "lachin": 98, "lacost": 22, "lafferti": 34, "lahiri": 6, "lakeshor": 98, "lamarr": 1, "lancet": 9, "lane": 17, "laneerrstat": 17, "lang": [15, 22, 87], "langu": 28, "languag": [3, 28, 30, 71], "lapierr": 22, "laptop": [15, 31, 82, 85], "larg": [26, 29, 31, 40, 42, 75, 94], "largefil": 40, "larger": [42, 51], "larmor": 78, "larri": 74, "lasagn": 33, "lasal": 98, "laserjet": 18, "lassond": 1, "last": [10, 20, 22, 32, 39, 42, 43, 79, 80], "late": 20, "latenc": 17, "later": [10, 20, 31, 55, 100, 110], "latest": [10, 13, 20, 27, 28, 31, 43, 54, 55, 70, 94, 95, 102], "latex": 110, "lath": 87, "launch": [12, 15, 17, 31, 54, 71], "launchag": 67, "launchctl": 67, "launcher": 94, "launchservic": 67, "laurin": 22, "laval": 13, "law": 22, "layer": [3, 17, 75, 99], "layov": 20, "ld_library_path": [35, 38], "ldp": 32, "ldpe": 99, "le": [1, 31, 97, 109], "lead": [42, 91], "learn": [4, 9, 10, 17, 20, 30, 39, 62, 73, 82, 109], "least": [10, 17, 20, 22, 24, 44, 67, 75, 102, 109], "leav": [28, 40, 55, 67], "lectur": [3, 73], "leener": 22, "left": [1, 13, 28, 39, 51, 55, 67], "leftov": 27, "legaci": 17, "legend": [24, 72], "lemai": 22, "len": 17, "length": [75, 78, 94, 99], "leopard": 67, "leppert": 79, "lesion": [6, 24, 75], "lesion_seg": 24, "less": [6, 31, 42, 109], "lesson": 57, "let": [10, 15, 18, 31, 36, 39, 40, 94, 109], "letter": [51, 100], "level": [3, 4, 17, 24, 26, 39, 51, 72, 73, 75, 98], "levesqu": 22, "levin": 22, "lf": 40, "lh": [9, 87], "li": 22, "lib": [13, 17, 35, 38, 42, 70, 71], "lib64": [35, 38], "libc": [70, 71], "libcubla": 17, "libcublaslt": 17, "libcuda": 17, "libcudart": 17, "libcudnn": 17, "libcufft": 17, "libcurand": 17, "libcusolv": 17, "libcuspars": 17, "libgl": 54, "libicudata": 17, "libitkcommon": 71, "libitkdoubl": 71, "libitkioimagebas": 71, "libitkionifti": 71, "libitkniftiio": 71, "libitkoptim": 71, "libitksi": 71, "libitkstatist": 71, "libitkv3p": 71, "libitkv3p_lsqr": 71, "libitkvcl": 71, "libitkvnl": 71, "libitkvnl_algo": 71, "libitkvnlinstanti": 71, "libmng": 66, "libnvidia": 17, "libpng12": 66, "librari": [7, 17, 42, 46, 47, 67, 71], "library_search_path": 71, "libstdc": [70, 71], "licenc": 108, "licens": [15, 17, 70, 72, 110], "license_laboslics": 72, "lichtenstein": 28, "lid": 67, "life": [67, 109, 110], "lift": 67, "light": [4, 32, 94], "lightdm": 35, "lightn": 3, "lightweight": 20, "lign": 22, "like": [1, 15, 17, 20, 24, 28, 29, 31, 39, 40, 42, 55, 67, 70, 82, 88, 98, 102], "lima": 20, "limimt": 72, "limit": [3, 94, 99], "line": [17, 35, 39, 40, 42, 51, 54, 63, 64, 66, 67, 70, 71, 73, 74, 87, 94, 102], "linear": [39, 75, 78], "linewidth": 72, "linjieyangsc": 3, "link": [3, 13, 14, 15, 17, 19, 22, 24, 28, 30, 38, 39, 40, 67, 70, 76, 80, 89, 93, 94, 98, 102, 110], "linkequalizationrequest": 17, "linux": [16, 17, 26, 31, 38, 39, 40, 42, 59, 63, 85], "linux_x86_64": 38, "linuxconfig": 32, "liom2": 78, "lion": [32, 67], "lipton": 6, "list": [1, 6, 8, 10, 17, 21, 22, 23, 24, 29, 31, 32, 38, 55, 57, 67, 71, 76, 79, 80, 82, 90, 93, 97, 98, 100, 106], "listen": 17, "literatur": [10, 29], "littl": [28, 39], "live": [56, 67, 96], "liver": 3, "lj3uqhdffqmovqksdljkyg": 28, "ll": [13, 55, 63, 66, 67, 71, 87, 102], "llactrep": 17, "llvm": [70, 71], "lm": 6, "lnkcap": 17, "lnkcap2": 17, "lnkctl": 17, "lnkctl2": 17, "lnkctl3": 17, "lnkequintrrupten": 17, "lnksta": 17, "lnksta2": 17, "load": [12, 13, 17, 27, 31, 35, 40, 48, 51, 75, 101], "loader": 94, "local": [17, 26, 28, 35, 38, 40, 42, 59, 62, 63, 66, 67, 70, 71, 72, 73, 79, 84, 87], "localhost": [17, 28, 55], "locat": [12, 15, 18, 24, 26, 27, 31, 62, 67, 70, 76, 80, 99], "lock": [28, 110], "log": [15, 19, 24, 27, 28, 31, 39, 40, 79, 82, 85, 87, 92, 110], "log_file_name_": 32, "logdir": 17, "logedit": 32, "logfil": 32, "logic": [24, 94], "login": [13, 15, 26, 35, 71, 79, 110], "login_desktop": 79, "logo": [20, 74, 86], "logout": 15, "london": [3, 20], "long": [15, 20, 26, 28, 31, 32, 39, 40, 70, 75, 98], "longer": [13, 24, 39, 70, 79], "longnam": 24, "longu": 98, "look": [10, 15, 17, 20, 28, 39, 40, 42, 67, 75, 80, 85, 87], "lookup": 31, "loop": 35, "lorsqu": 1, "lose": 40, "lost": [41, 67], "lot": [10, 20, 22, 40, 42, 44, 62], "louer": 97, "loui": 22, "low": [75, 94], "lpevc": 17, "lsblk": 31, "lscolor": 87, "lso": 110, "lsof": 17, "lspci": 17, "lsregist": 67, "lt": [66, 87], "ltr": 17, "ltr1": 17, "lu": 6, "luc": 98, "luessi": 73, "lufi": 31, "luggag": 97, "luna": 6, "lunch": 21, "lung": 75, "m": [6, 9, 13, 17, 24, 27, 32, 39, 40, 42, 56, 66, 67, 75, 78, 87, 107, 109], "m3500": 1, "m4a": 67, "m5517": 1, "m5519": 1, "ma": 6, "mabort": 17, "mac": [15, 26, 31, 56, 63, 72], "machin": [3, 4, 6, 10, 15, 17, 20, 24, 25, 40, 62, 67, 72, 75, 103, 107, 110], "macintosh": [6, 67], "macmillan": 57, "maco": [15, 20, 26, 39, 40, 51, 59, 63, 64, 74, 85, 87, 102], "macosforg": 67, "macosx": 70, "macosx10": 70, "macresearch": 70, "macro": 58, "mactheripp": 67, "macworld": 67, "made": [39, 70, 75, 78], "madhuranthakam": 6, "mag": 24, "magic": 31, "magicmim": 40, "magmedix": 75, "magn": 6, "magnet": [3, 6, 9, 24, 75, 110], "mai": [10, 17, 20, 24, 26, 28, 31, 39, 51, 53, 56, 62, 63, 70, 71, 85, 94], "mail": 93, "mailplan": 67, "mailx": 31, "main": [1, 13, 17, 20, 78, 82], "main_pag": 107, "maintain": [25, 94], "maisonneuv": 98, "major": [17, 82, 94], "make": [10, 13, 15, 17, 20, 24, 25, 27, 31, 35, 39, 40, 43, 50, 56, 57, 63, 66, 70, 71, 85, 87, 88, 93, 94, 98, 99, 102, 107, 109, 110], "makefil": 70, "makehybrid": 67, "makesign": 20, "maketecheasi": 63, "male": [24, 105], "malftlp": 17, "mamba": 40, "mambaforg": 40, "mammoth": 13, "manag": [15, 17, 19, 22, 28, 39, 42, 53, 54, 67, 92, 94], "mandatori": [15, 24, 56, 82], "mandel": 99, "mangl": 102, "mani": [31, 39, 40, 55, 67, 97], "manipul": [3, 32], "manner": 94, "manual": [15, 24, 40, 42, 67, 70, 71, 78, 86, 94, 101], "manufactur": 103, "manuscript": [90, 110], "manuscript_r0": 110, "map": [24, 26, 75, 80, 98, 110], "mar": [9, 26], "march": 85, "margin": 17, "mari": [75, 98, 109], "mark": [7, 39, 40], "markdown": [24, 94, 110], "marker": [42, 79], "markup": 67, "marsali": 15, "martin": [22, 73], "martino": [75, 107], "mart\u00edn": 6, "mask": [24, 42, 48, 75], "mask_destin": 42, "mask_sourc": 42, "maskabl": 17, "master": [3, 22, 27, 28, 38, 39, 67, 94], "mat": [20, 99], "match": [3, 15, 31, 32, 40], "mate": 1, "materi": [29, 42, 95, 99, 110], "math": 22, "mathieu": [28, 92], "mathwork": [67, 72], "matlab": [6, 12, 15, 25, 73, 87], "matlab_r2020a": 87, "matlab_shar": 25, "matlplotlib": 73, "matricul": 99, "matrix": 42, "matshow": 73, "matt": 20, "matter": [3, 21, 24], "matthew": 39, "maverick": [31, 67], "max": [26, 28, 78, 109], "maxdepth": 31, "maximum": 78, "maxiter": 42, "maxpayload": 17, "maxreadreq": 17, "maxtimeslot": 17, "mayavi": 73, "mayb": [39, 70, 75, 94], "mayonnais": 75, "mb": [17, 31], "mc": 42, "mccoi": 9, "mcgill": [13, 20, 87], "mcmaster": 99, "md": [94, 98], "md5": [31, 40], "md5e": 40, "md5sum": 31, "mdnsrespond": 31, "mdph": 22, "mdutil": 67, "me": 67, "mean": [10, 19, 20, 24, 28, 39, 42, 70, 72, 75, 94], "meaning": [39, 94], "meant": 94, "meantim": 74, "measur": [3, 17, 75, 110], "mecalab": 99, "mechan": [3, 9, 78], "med": [6, 41], "medecinegeneral": 98, "media": 63, "medic": [1, 6, 20, 28, 42, 48, 75, 96, 107, 110], "medicin": [6, 79, 110], "medicocentremontroy": 98, "mediti": 110, "medium": [3, 78, 94], "meet": [6, 19, 29], "meg": 59, "megabyt": 13, "melba": 110, "melbourn": 20, "mem": [13, 17], "member": [0, 6, 10, 13, 20, 28, 29, 76, 82], "memori": [13, 17, 51, 63], "memwinv": 17, "menisci": 3, "mental": 39, "mentimet": 74, "mention": [24, 94, 99, 110], "menu": [18, 26, 28, 35, 39, 51, 67, 71, 85], "menu_nvidia_smi_submenu_gpu0_rtx_a6000": 17, "menu_nvidia_smi_submenu_gpu1_rtx_a6000": 17, "menu_nvidia_smi_submenu_gpu2_rtx_a6000": 17, "menu_nvidia_smi_submenu_gpu3_rtx_a6000": 17, "menumet": 67, "merg": [28, 59, 64, 94], "merit": 109, "mesa": 54, "mesh": 44, "meshlab": 67, "messag": [14, 15, 17, 24, 26, 31, 67, 70, 82, 87], "mesur": 22, "meta": [24, 64], "metadata": [24, 27], "metamateri": 75, "metasurfac": 75, "method": [3, 10, 13, 17, 22, 39, 75, 110], "metr": 99, "metric": [17, 94], "metrictyp": 42, "mf": 40, "mg": 9, "mgh": 39, "mgs4u": 99, "mhz": [78, 107], "mi": 42, "michael": [6, 7, 110], "micro": 22, "microscopi": [4, 23, 24, 28, 94, 110], "microscropi": 94, "microsecond": 78, "microsoft": [11, 15, 110], "microsoft365": 14, "microwav": 110, "midl": 20, "mig": 17, "might": [10, 15, 17, 20, 26, 28, 39, 62, 67, 75, 110], "migrat": 27, "miguel": 20, "mil": 99, "mila": [3, 13, 20, 110], "mildcompress": 24, "mileston": [10, 94], "milk": 75, "minc": 41, "mind": 28, "mindepth": 31, "mingu": 15, "mini": 15, "minicircuit": 99, "miniconda": [73, 87], "miniconda3": [17, 59, 87], "miniforg": 40, "minim": [57, 78], "minima": 57, "minor": 94, "minuit": 1, "minus_on": 20, "minut": [1, 10, 20, 63, 79], "misc": 103, "miscellan": 51, "mismatch": 24, "miss": [1, 24, 27, 51, 67, 81], "mistak": [39, 57], "mit": 3, "mitac": 109, "mitk": 67, "mitkworkbench": 15, "mix": [70, 107], "mixmatch": 3, "mjp": 6, "mkdir": [15, 17, 26, 27, 39, 40, 66, 102], "ml": [17, 22], "mlexplain": 3, "mlwidget": 67, "mm": [13, 31, 78, 90], "mni": [41, 76], "mni305": 24, "mnt": [15, 17, 26, 63, 66], "moab": 13, "mobil": 15, "mod_unload": 17, "modal": [3, 24, 75, 94], "mode": [20, 31, 54, 55, 67, 71, 73, 94, 110], "model": [3, 9, 15, 16, 17, 22, 24, 34, 75, 94, 101], "modern": [6, 99], "modeset": 35, "modif": [20, 31, 39, 110], "modifi": [24, 28, 31, 39, 40, 57, 94, 110], "modifyhd": 63, "modinfo": 17, "modprob": 35, "modul": [12, 17, 37, 40, 67, 94], "modular": [4, 75], "module_itkv3compat": 70, "module_itkvtkglu": 70, "module_nam": 13, "modvers": 17, "moell": 109, "molini": 24, "moment": 73, "mon": 24, "mon001": 24, "monei": 17, "monitor": [15, 27, 67, 82], "monitorcontrol": 67, "monospac": 94, "mont": [3, 44, 98], "monterei": 15, "montesino": 6, "month": [20, 27, 75], "monthli": 27, "montreal": [13, 20, 22, 24, 80, 85, 96, 98, 100, 109, 110], "montr\u00e9al": [98, 110], "mood": 3, "more": [0, 1, 10, 17, 20, 21, 22, 24, 25, 26, 29, 31, 32, 38, 39, 42, 53, 55, 63, 67, 75, 76, 80, 82, 85, 86, 89, 91, 94, 107, 109], "mortim": 98, "most": [22, 31, 39, 42, 67, 70, 82, 110], "mostli": [27, 94, 109], "motion": 75, "motiv": 24, "motor": 9, "motricit\u00e9": 109, "mount": [17, 25, 27, 55, 56, 63, 101], "mountain": [32, 67], "mous": [67, 82], "mov": 67, "move": [5, 9, 12, 15, 31, 39, 42, 75, 96], "movement": [67, 75], "moving_imag": 42, "movingimag": 42, "movingpoint": 42, "mozilla": 102, "mp2": 13, "mp2rage": 24, "mp3": 67, "mp4": [67, 101], "mpi": 13, "mpmri": 75, "mpr": 51, "mr": [3, 22, 79], "mr750": 77, "mrd": 75, "mrhub": 6, "mri": [1, 23, 24, 25, 26, 28, 41, 45, 46, 59, 67, 74, 75, 78, 79, 103, 107], "mri_nu_correct": 41, "mricron": [15, 87], "mriid": 79, "mrilab": 6, "mrm": [6, 110], "mrn": 9, "mrshub": 6, "mrtech": 79, "msc": [6, 22], "mschapv2": 102, "msfhr": 109, "msi": 17, "msub": 13, "mt": [24, 31, 78], "mth3302": 22, "mth6305a": 22, "mth6312": 22, "mtime": 31, "mton_mt": 24, "mtv": 75, "much": [10, 12, 13, 17, 22, 28, 42], "multhdrreccap": 17, "multhdrrecen": 17, "multi": [3, 24, 31, 75, 94], "multiclutch": 67, "multidimension": 42, "multimod": [3, 42], "multipl": [3, 17, 20, 22, 24, 28, 32, 40, 41, 67, 70, 76, 90, 94, 99, 110], "multitask": 3, "munich": 20, "musculoskelet": 9, "must": [10, 13, 17, 22, 24, 40, 44, 51, 67, 71, 72, 80, 99, 100], "mustn": 44, "mutsaert": 6, "mutual": [42, 94], "mv": [31, 39, 67, 102], "mvp": 67, "my": [3, 6, 14, 20, 27, 32, 39, 40, 67, 70, 94], "my_fil": 39, "my_job": [12, 13], "my_project": 73, "my_project_fold": 73, "my_repo": 39, "my_script": 36, "my_sct_script": 13, "my_str": 32, "mycommand": 32, "myelin": 24, "myelin_06_rescan": 12, "myelin_map": 12, "myelopathi": 24, "myfig": 73, "myst": 0, "m\u00e9decin": 22, "m\u00e9dical": 22, "m\u00e9dico": 98, "m\u00e9lani": 75, "m\u00e9thode": 22, "n": [9, 13, 15, 17, 20, 24, 28, 39, 40, 42, 59, 64, 67, 84, 110], "nacl": 107, "nadia": 22, "naga": [15, 22, 75], "name": [13, 15, 17, 20, 26, 27, 28, 31, 32, 40, 43, 47, 51, 63, 67, 70, 71, 72, 76, 79, 80, 82, 86, 90, 94], "name_of_sess": 31, "nameofyourprogram": 71, "nano": [66, 87, 102], "nanom\u00e9decin": 22, "narval": 27, "narvid": 9, "naryanan": 22, "nat": 9, "nathan": [24, 28], "nativ": 67, "natur": [34, 94, 110], "navbartemp": 102, "navier": 3, "navig": [70, 71], "nb": [13, 15], "nbbin": 42, "nc": 32, "ncbi": 110, "nd": 105, "ndp": 15, "necess": 26, "necessari": [10, 13, 35, 70, 71, 75, 79, 82, 101], "necessarili": 10, "necessit": 94, "neck": [6, 75], "need": [1, 3, 10, 12, 13, 14, 15, 17, 19, 20, 21, 22, 24, 26, 27, 28, 31, 35, 39, 40, 44, 54, 55, 62, 63, 66, 67, 70, 71, 73, 75, 76, 79, 80, 82, 84, 85, 90, 91, 94, 98, 99, 100, 101, 105, 109, 110], "neg": 17, "negopend": 17, "neighbour": 42, "neilsen": 110, "nerguizian": 22, "nerv": 24, "net": [6, 31, 42, 60, 75, 102], "netdev": 102, "netherland": 74, "netlib": 71, "netlifi": 6, "network": [3, 9, 15, 17, 26, 29, 54, 56, 72, 82, 84, 85, 94, 102, 110], "neur": 22, "neural": [9, 17, 20, 22, 110], "neural_network": 37, "neurip": 20, "neuro": [5, 15, 16, 17, 22, 23, 25, 26, 40, 67, 79, 87], "neuroadiologi": 110, "neuroimag": [6, 9, 20, 22, 24, 31, 40, 47, 95], "neuroinformat": [75, 110], "neurol": 9, "neurologi": 110, "neuromod": 110, "neuronal": 22, "neuropatholog": 75, "neuropoli": [0, 1, 3, 6, 8, 11, 12, 13, 17, 18, 19, 20, 21, 24, 27, 29, 39, 54, 63, 67, 73, 75, 76, 78, 80, 81, 82, 84, 90, 92, 94, 96, 101, 102, 103, 110], "neuropolylab": 110, "neuroradiol": 9, "neuroradiologi": 6, "neurorx": 75, "neurosci": [9, 22, 109, 110], "neurowir": 20, "never": [10, 27, 39], "new": [3, 13, 15, 20, 24, 25, 28, 31, 39, 51, 54, 58, 67, 70, 84, 85, 94, 110], "new_file_nam": 31, "newer": 31, "newli": [15, 96], "newton": 28, "next": [15, 28, 32, 63, 67, 94, 99], "nf": 56, "nguenther": 40, "ni": 1, "nia": 22, "niagara": [13, 87], "nibabel": [7, 49], "nibardo": 75, "nice": [10, 57, 87], "nick": [27, 92], "nicl2": 107, "nifti": [15, 44, 51, 67, 74, 84], "nifti1field": 49, "nifti1fields_pag": 49, "nightli": [25, 26], "nightmar": 56, "nih": [22, 49, 75, 107, 110], "nii": [13, 24, 27, 31, 32, 40, 41, 42, 84, 87], "nikola": [18, 22, 75, 110], "nilearn": [33, 73], "nimag": 44, "nimh": 49, "nind": 107, "nipi": 49, "nipyp": 73, "nishimura": 6, "niso4x6h2o": 107, "nitrc": 107, "nl": [17, 101], "nlm": 110, "nmr": [6, 39, 110], "nn": [3, 87], "nnu": 3, "node": [13, 17, 35, 50], "noexec": 26, "nofich": 98, "noguerol": 6, "noir": 99, "nois": [75, 78], "nomin": [20, 22], "nomul": 67, "non": [17, 26, 29, 40, 75, 109], "none": [38, 67, 110], "nonfatalerr": 17, "nonlinear": 3, "nonneg": 24, "nonphysicist": 6, "nord": 98, "nori": 9, "normal": [3, 15, 17, 28, 40, 58, 71, 75], "north": 99, "nosnoop": 17, "nosoftrst": 17, "notabl": 6, "note": [1, 3, 10, 12, 15, 17, 20, 22, 24, 27, 28, 31, 35, 39, 42, 55, 64, 67, 73, 74, 76, 79, 87, 94], "notebook": [17, 55], "notepad": 102, "noth": [15, 28, 35, 40, 43], "notic": [10, 28, 35, 99], "notif": [1, 88], "notifi": 94, "notificationcent": 67, "notificationcenterui": 67, "notr": 98, "nou": 98, "nounix": 66, "nouveau": [17, 35], "novemb": 10, "now": [10, 15, 17, 25, 27, 35, 39, 63, 67, 70, 71, 75, 110], "np": 109, "npm": 50, "nr": 31, "nroprprp": 17, "nsc6084": 22, "nserc": 109, "nsnavpanelexpandedstateforsavemod": 67, "nsw": 20, "ntask": 13, "ntlmssp": 66, "null": 87, "nullifi": 63, "num": 87, "num2str": 72, "numa": 17, "number": [13, 15, 17, 26, 32, 39, 40, 42, 72, 87, 94, 110], "numer": [1, 32, 70, 97], "numpi": [38, 72, 73], "num\u00e9riqu": 22, "nvcc": 35, "nvidia": [15, 17, 35, 36, 38, 109, 110], "nvidia_cuda": 35, "nvidia_drm": 17, "nvidiafb": 17, "nvme": [15, 16], "nvreg_devicefilegid": 17, "nvreg_devicefilemod": 17, "nvreg_devicefileuid": 17, "nvreg_dmaremappeermmio": 17, "nvreg_dynamicpowermanag": 17, "nvreg_dynamicpowermanagementvideomemorythreshold": 17, "nvreg_enabledbgbreakpoint": 17, "nvreg_enablegpufirmwar": 17, "nvreg_enablemsi": 17, "nvreg_enablepciegen3": 17, "nvreg_enablepcierelaxedorderingmod": 17, "nvreg_enables0ixpowermanag": 17, "nvreg_enablestreammemop": 17, "nvreg_enableusernumamanag": 17, "nvreg_excludedgpu": 17, "nvreg_gpublacklist": 17, "nvreg_ignoremmiocheck": 17, "nvreg_initializesystemmemoryalloc": 17, "nvreg_kmallocheapmaxs": 17, "nvreg_memorypools": 17, "nvreg_modifydevicefil": 17, "nvreg_nvlinkdis": 17, "nvreg_preservevideomemoryalloc": 17, "nvreg_registerforacpiev": 17, "nvreg_registerpcidriv": 17, "nvreg_registrydword": 17, "nvreg_registrydwordsperdevic": 17, "nvreg_resmandebuglevel": 17, "nvreg_restrictprofilingtoadminus": 17, "nvreg_rmlogonrc": 17, "nvreg_rmmsg": 17, "nvreg_s0ixpowermanagementvideomemorythreshold": 17, "nvreg_tcebypassmod": 17, "nvreg_temporaryfilepath": 17, "nvreg_usepageattributet": 17, "nvreg_vmallocheapmaxs": 17, "nvswitch": 17, "nvswitchblacklist": 17, "nvswitchregdword": 17, "nvtop": 17, "nvverifi": 17, "nybe": 6, "nyu": 6, "o": [13, 15, 16, 17, 24, 26, 30, 31, 32, 35, 40, 41, 42, 51, 63, 67, 71, 94, 101], "o2": 75, "obff": 17, "obj": 67, "object": [3, 4, 10, 27, 38, 39, 40, 44, 67, 73, 78, 107], "objet": 22, "observ": 3, "obsproject": 67, "obtain": [22, 24, 85, 105], "occur": 67, "ocra": 6, "oct": [6, 20], "octob": [70, 109], "octolaps": 102, "octopi": 102, "octoprint": [101, 103], "octoslack": 102, "od": 78, "off": [15, 17, 24, 58, 67, 70, 73, 94], "off_mt": 24, "offer": [22, 40, 97, 98, 99], "offic": [14, 15], "offici": [10, 15, 39, 62, 70, 107], "offlin": 75, "offset": 42, "often": 39, "oftentim": 39, "oh": 31, "oil": [75, 99], "ok": [17, 51], "okel": 6, "old": [25, 27, 110], "older": [28, 39, 40, 67], "olivi": 75, "omc": 42, "omiss": 24, "omit": 39, "omnigraffl": 67, "on_mt": 24, "onboard": [0, 15, 19, 82, 91], "onc": [1, 12, 13, 15, 17, 19, 20, 24, 27, 28, 31, 32, 35, 39, 42, 55, 59, 63, 67, 70, 71, 76, 80, 82, 85, 88, 94], "ond": 22, "one": [10, 13, 15, 17, 20, 24, 26, 27, 28, 31, 35, 39, 40, 42, 44, 53, 54, 55, 59, 64, 67, 71, 75, 79, 94, 110], "oneapi": 17, "onednn": 17, "onelin": [39, 87], "ones": [17, 28, 70, 71, 74], "onli": [6, 10, 12, 13, 14, 20, 22, 24, 25, 26, 27, 28, 31, 36, 39, 40, 41, 55, 59, 63, 64, 67, 71, 74, 90, 94, 109, 110], "onlin": [6, 24, 94], "onto": [15, 17], "oo": 42, "open": [6, 10, 12, 13, 15, 17, 18, 19, 20, 22, 26, 27, 31, 32, 39, 40, 45, 48, 53, 54, 55, 59, 63, 64, 70, 74, 79, 81, 82, 84, 85, 87, 102, 110], "opencl": 17, "openconnect": 15, "opengl": 35, "openneurodataset": 59, "oper": [15, 17, 35, 39, 40, 54, 66, 76, 102], "opera": 67, "opinion": 39, "opportun": 20, "opt": [24, 38], "optic": 110, "optim": [17, 78], "option": [13, 15, 17, 20, 24, 28, 32, 35, 39, 40, 42, 44, 47, 55, 63, 70, 71, 85, 98], "oracl": [38, 62, 63], "oral": 20, "orang": 32, "ord": 79, "order": [1, 13, 15, 20, 31, 54, 55, 62, 63, 67, 75, 78, 79, 85, 110], "ordinari": 3, "org": [3, 6, 22, 31, 32, 33, 37, 39, 41, 42, 50, 57, 59, 62, 63, 66, 67, 70, 73, 74, 75, 93, 102, 105, 107], "organ": [1, 15, 19, 21, 24, 28, 29, 39, 73, 90, 109], "organigram": 67, "orient": [24, 42, 49, 51, 73], "orient\u00e9": 22, "orig": 24, "origin": [3, 10, 20, 24, 27, 39, 41, 42, 94], "ortiz": [22, 28], "osch": 6, "osf": 31, "osirix": [15, 67], "osmium": 99, "osprei": 6, "osx": [26, 31, 42, 47, 54, 56, 57, 67, 72], "osxfus": 15, "other": [6, 13, 14, 15, 17, 19, 20, 21, 22, 23, 24, 28, 29, 40, 42, 54, 55, 67, 70, 71, 75, 76, 79, 83, 85, 86, 94, 110], "otherrepositori": 39, "otherwis": [16, 24, 39, 42, 56], "ottawa": 20, "ou": 100, "ouest": 98, "oui": 75, "oumayma": 75, "ount": 66, "our": [15, 20, 24, 27, 28, 47, 54, 55, 70, 75, 76, 79, 80, 91, 92, 98], "out": [6, 10, 17, 19, 20, 28, 32, 39, 40, 87, 91, 97, 100], "outcom": 94, "outer": [75, 78], "outgo": 86, "outlet": 21, "outlin": [22, 67], "outprefix": 42, "output": [13, 24, 26, 28, 31, 35, 38, 42, 75, 87, 94], "output_imag": 41, "outputfil": 44, "outputfilenam": 51, "outsid": [10, 29, 51, 94], "ouvert": 98, "ouvrir": 98, "over": [17, 20, 26, 39, 71, 78, 82, 102], "overal": [20, 94], "overlap": 44, "overnight": 67, "overrid": [40, 64], "oversight": 91, "overview": [3, 6, 9, 22, 53], "ow": 75, "own": [17, 24, 27, 54, 63, 110], "owner": [56, 67], "ownership": 56, "ox": [49, 67, 75], "oxsa": 6, "oxsatoolbox": 6, "oz": 99, "p": [6, 9, 13, 15, 17, 27, 31, 40, 42, 44, 54, 55, 67, 73, 79, 90, 99], "p0": 17, "p000000": 26, "p100": [15, 17], "p101317": 87, "p123123": 15, "p2": 17, "p2p": 40, "p8": 17, "p_id": 105, "pac": 97, "pacif": 99, "pack": [22, 44, 62], "packag": [15, 17, 38, 45, 47, 48, 62, 67, 94], "pacman": 40, "pad": 75, "page": [0, 5, 10, 15, 20, 21, 24, 28, 29, 39, 42, 55, 57, 67, 71, 82, 94, 99, 110], "pagefault": 17, "pagefit": 58, "pai": [20, 99], "paid": 99, "painfulli": 39, "pair": [22, 40, 42, 67], "pairwis": 102, "pal": 22, "pam50": [24, 75], "pandem": 82, "panel": [39, 99], "paper": [3, 20, 82, 94, 99, 101, 110], "paperpil": 3, "paperpositionmod": 72, "papier": 20, "paquet": 28, "paragraph": [39, 94], "parallel": 6, "param": [39, 42], "paramagnet": 107, "paramat": 42, "paramet": [3, 55, 75, 84], "paranoid": 67, "parc": 98, "parent": 24, "parerr": 17, "pari": [20, 75], "park": 6, "parker": 15, "parkerplast": 99, "parm": 17, "part": [3, 6, 10, 19, 22, 24, 28, 39, 40, 47, 50, 67, 71, 75, 82, 94, 110], "parti": 94, "partial": [3, 75], "partialmatchingiter": 42, "particip": [79, 85, 100], "participant_id": 24, "particular": [15, 94], "particularli": [40, 94], "partir": 22, "partit": [31, 72], "partner": 110, "partnership": [100, 109], "partovi": 22, "parzen": 42, "pascual": 9, "pass": [10, 15, 17, 32, 35, 42, 55, 67, 71, 94], "passif": 22, "passphras": 28, "passwd": 15, "password": [14, 26, 28, 53, 63, 66, 71, 74, 80, 85, 86, 101, 102], "past": [28, 31, 39, 53, 64, 67, 71, 94, 110], "pastebin": 94, "pasternack": 99, "patch": [72, 74, 94], "patentrybit": 17, "path": [12, 13, 17, 24, 31, 35, 38, 39, 43, 50, 54, 55, 62, 63, 66, 67, 70, 71, 79, 84, 87, 99], "path_dest": 54, "path_output": 42, "path_to_fil": 31, "path_to_file_1": 39, "path_to_file_2": 39, "path_to_model": 17, "path_to_my_repo": 39, "path_to_plugin": 67, "path_to_python": 73, "pathologi": 24, "patienc": 110, "patient": 75, "patient_1": 44, "patoffset": 17, "patorjk": 74, "patrick": 22, "pattern": [31, 32], "paul": [6, 75], "pavilion": 20, "paychequ": 99, "payment": 76, "pb": [12, 13, 31, 99], "pbeee": 109, "pc": [15, 26], "pcb": 103, "pcc": 70, "pchemlab": 99, "pci": 17, "pcid": 105, "pcie": 15, "pd": [75, 109], "pd_sim_sbs_121_1": 99, "pdf": [3, 20, 42, 67, 74, 90, 99, 107, 108, 110], "pdfshrink": 67, "peak": [75, 78], "peap": [85, 102], "peaplabel": 102, "pearson": 22, "pem": 102, "pennstat": 6, "peopl": [6, 13, 17, 27, 28, 67, 70, 76, 94, 109], "pep8": 94, "per": [10, 13, 31, 71, 75, 107, 109, 110], "percentag": 42, "perf": 17, "perfect": 7, "perform": [3, 4, 13, 17, 39, 42, 50, 67, 79], "performequ": 17, "perfus": 6, "period": 75, "perman": [17, 39, 62, 63, 79], "permeabl": 44, "permiss": [13, 15, 17, 25, 26, 28, 39, 40, 56, 63, 66], "permit": 96, "perr": 17, "persist": [17, 40], "person": [12, 15, 24, 26, 39, 76, 79, 80, 82, 91, 92, 94, 109, 110], "perspect": 40, "pertin": 79, "peru": 20, "pet": 59, "petr": 6, "pfa": 99, "pfpe": 99, "phalang": 94, "phantfunc": 17, "phantom": [75, 79, 103, 110], "phantomrecip": 107, "phase": [6, 24, 70, 75], "phase1": 102, "phase2": 102, "phd": [10, 22], "phone": [67, 86], "phosphor": 75, "photo": 99, "php": [41, 67, 82, 98, 100], "phs3210": 22, "phy": 6, "phy2300": 22, "phy6985": 22, "phy6990": 22, "physic": [6, 7, 17, 40, 98, 110], "physician": 6, "physiqu": 22, "pi": [13, 19, 99, 101, 102], "pick": [15, 17, 26, 27, 40, 82, 95], "pictori": 9, "pictur": 67, "pid": [17, 99], "piec": [40, 97], "pike": 75, "pin": [17, 82, 94], "pinch": 27, "pip": [13, 38, 59, 73, 87], "pip_packag": 38, "pipe": 17, "pipefail": 15, "pipelin": [24, 75], "pipermail": 42, "pitfal": 39, "pixel": [3, 4, 51], "pixelm": 67, "pjt": 110, "pkill": 31, "pla": 101, "place": [19, 40, 67, 71, 79, 98, 107], "placehold": 110, "plai": 4, "plain": 40, "plan": [1, 10, 15, 22, 82, 94], "plane": 20, "plaqu": 24, "plastic": 99, "plateau": 98, "platform": [17, 59, 70], "player": [19, 67], "playlist": 19, "pleas": [1, 8, 13, 15, 17, 18, 19, 20, 22, 24, 25, 26, 27, 28, 29, 39, 40, 47, 55, 75, 76, 79, 81, 88, 89, 90, 91, 92, 94, 98, 101, 109, 110], "pleasur": 20, "plein": 1, "plist": 67, "plist__old": 67, "plo": 110, "plot": [17, 72, 73], "plt": 73, "plug": [4, 21, 67], "plugin": [4, 15, 62, 67], "ply": 44, "pm": 17, "pm_l1": 17, "pmatricul": 85, "pmc": 110, "pmc3178846": 110, "pme": 17, "pmeclk": 17, "pmem": 13, "pmj": [24, 75], "pmj_dlabel": 24, "pmprintingexpandedstateforprint": 67, "png": [20, 31, 73, 94], "po": 20, "poem": 75, "point": [10, 15, 21, 24, 25, 26, 35, 39, 43, 51, 70, 91, 94, 102, 110], "pointer": [17, 40, 94], "pointless": 10, "pointsetpercentag": 42, "pointsetsigma": 42, "polar": 78, "poli": [10, 20, 98], "polici": [20, 79], "polydata": 48, "polyethylen": 99, "polygon": 51, "polygram": [16, 17, 99], "polygrames_password": 26, "polygrames_usernam": 26, "polyinvit": 15, "polymid": 99, "polymtl": [1, 5, 14, 15, 16, 17, 20, 21, 22, 23, 25, 26, 40, 67, 76, 78, 82, 85, 87, 89, 93, 99, 100, 101, 102], "polymtlca0": 14, "polyroam": 85, "polyssl": 15, "polystyren": 99, "polytechinqu": 109, "polytechniqu": [1, 13, 14, 20, 85, 89, 90, 93, 97, 98, 100, 109, 110], "pontomedullari": 24, "popular": 40, "popularli": 42, "poq": 13, "port": [1, 17, 28], "port_loc": 17, "port_numb": 15, "port_rosenb": 17, "portcommonmoderestoretim": 17, "portnumb": 17, "porttpowerontim": 17, "posit": [42, 72, 78, 79], "posix": 84, "possibl": [10, 13, 14, 15, 20, 27, 28, 39, 67, 94, 100], "post": [15, 17, 28, 91, 93, 94], "post2": 38, "postdoc": [82, 93], "postdoctor": 81, "poster": [29, 110], "posterdesign": 20, "posteriori": 20, "postprocess": 24, "potenti": [56, 75], "pouc": 20, "pour": [22, 98, 109], "power": [17, 21, 32, 40, 57, 67, 70, 78, 110], "powerbook": 67, "powerpoint": 20, "ppa": 38, "ppl": 75, "ppn": 13, "pptx": [90, 110], "pr": [39, 109], "practic": [0, 3, 6, 100], "pratiqu": 22, "pre": 13, "preamp": 75, "preceed": 99, "preconfigur": 55, "precup": 22, "predefin": 32, "predict": [3, 75], "prefer": [1, 15, 17, 39, 51, 54, 67, 73, 86, 90, 94, 110], "preferredauthent": 15, "prefetch": 17, "prefix": [32, 39, 90, 94], "preheat": 101, "preliminari": 10, "prepar": [10, 98, 101, 107], "preparatif": 100, "prepend": 40, "preprocess": 71, "present": [3, 19, 20, 24, 35, 39, 71, 73, 110], "preserv": 41, "presid": 10, "press": [18, 25, 31, 67, 70], "pretti": [10, 39, 87], "prevent": [31, 39, 40, 56], "preview": [20, 28, 110], "previou": [10, 22, 24, 28, 67, 85, 94], "previous": [24, 42, 85], "pri": 22, "price": 20, "primari": [24, 64], "primarili": 82, "primer": 9, "princip": [1, 22], "principl": 6, "print": [17, 18, 20, 31, 32, 72, 75, 103], "print0": 31, "printer": [11, 15, 82], "printf": 32, "priori": 20, "priorit": 15, "prioriti": [13, 75, 94, 102], "prisma": 15, "privaci": 67, "privat": [1, 28, 40], "privatebin": 31, "prive": 98, "privileg": 55, "privnot": 74, "prix": 99, "pro": 110, "proactive_key_cach": 102, "probabilist": [3, 22, 34], "probabilit\u00e9": 22, "probabl": [28, 39, 56, 62, 67, 70, 91], "probe": 75, "problem": [10, 27, 31, 35, 39, 41, 51, 67, 73, 75, 91, 94, 105], "problemat": [18, 56, 67], "proc": 35, "procedur": [11, 13, 15, 22, 25, 31, 39, 70, 82, 92, 94, 107], "proceed": 8, "process": [4, 10, 12, 13, 15, 17, 22, 24, 25, 26, 27, 30, 36, 39, 40, 42, 45, 51, 54, 67, 70, 73, 75, 85, 94, 108, 110], "process_data": 39, "produc": [4, 24, 28], "product": [14, 71, 99, 105], "product_id": 99, "product_information_sheet": 107, "prof": [10, 22], "professor": [21, 34], "profil": [15, 17, 28, 59, 83, 84, 85], "profit": 29, "prog": 17, "program": [6, 10, 20, 24, 25, 30, 63, 67, 71, 100, 109, 110], "programm": [22, 100, 109], "programminghistorian": 57, "progress": [6, 75, 90, 91], "project": [1, 10, 13, 15, 17, 22, 23, 24, 25, 26, 27, 29, 47, 60, 70, 73, 82, 90, 91, 95, 105, 109, 110], "project1": 15, "project_hom": 84, "project_nam": 39, "projectnam": 79, "projet": 22, "prolif": 105, "promis": 3, "promot": 20, "prompt": [85, 87, 102], "proof": [22, 79], "propag": [22, 110], "properli": 71, "properti": 38, "proport": [20, 41], "propos": [6, 24, 42, 94, 109], "propseg": 13, "prospa": 25, "prostat": 3, "protect": [27, 28], "proto": 102, "protobuf": 38, "protocol": [53, 67, 85, 94, 110], "provid": [4, 10, 17, 20, 24, 27, 28, 39, 47, 55, 62, 70, 71, 82, 85, 94, 96, 101, 109, 110], "provinc": 97, "provinci": 100, "proxim": 41, "ps1": 87, "psacnn": 3, "pstree": 31, "psy6983": 22, "pty": 28, "pub": [28, 38, 39, 53], "public": [10, 13, 19, 20, 24, 26, 28, 42, 43, 53, 72], "publickei": [28, 39], "publicli": 94, "publish": [19, 73], "pubm": 3, "pui": 75, "pull": [53, 54, 81], "puls": [3, 15, 25, 78], "pulseox": 75, "pulseq": 6, "punctuat": 39, "purchas": 96, "pure": [10, 35], "purpl": [32, 94], "purpos": [15, 35, 74, 110], "push": [17, 27, 28, 31, 40, 87], "put": [13, 14, 22, 26, 28, 32, 39, 43, 62, 67, 70, 79, 82, 100], "putti": 15, "pve": 75, "pwr": 17, "pwrind": 17, "py": [3, 24, 36, 38, 66, 73, 87], "pycharm": [15, 67, 73, 94], "pydata": 66, "pyflak": 94, "pylab": 73, "pylint": 94, "pymvpa": 73, "pypi": 73, "pyplot": 73, "pyralux": 99, "pyrolit": 75, "pysurf": 73, "pytest": 73, "pytestedit": 73, "python": [15, 17, 24, 36, 38, 42, 59, 66, 72, 85, 94], "python2": 38, "python3": [17, 87], "python310": 17, "pytorch": [3, 17], "q": [6, 13, 31, 39, 40, 42, 44, 54], "qa": 107, "qbin": [20, 109], "qc": [12, 20, 80, 98, 109, 110], "qdel": 13, "qform": 49, "qin": 6, "qlgener": 67, "qlmanag": 67, "qlsc": 22, "qmrlab": [1, 75, 94], "qmrlab_gener": 1, "qmt": 75, "qmtlab": 75, "qr": 20, "qsform": 49, "qstat": [12, 13], "qsub": [12, 13], "qt": [70, 98], "quad": 15, "quadratur": 78, "qualiti": [19, 20, 110], "quantit": [3, 110], "quantiti": 107, "quartz": 15, "quebec": [13, 20, 22, 82, 97, 100, 109, 110], "queen_elizabeth_urgent_car": 98, "queri": 67, "question": [6, 10, 28, 31, 70, 92, 98], "queue": 13, "qui": 22, "quick": [3, 20, 24, 27, 39, 67, 70, 74, 87], "quickli": [67, 107], "quicklook": [15, 74], "quicksilv": 67, "quicktim": 19, "quit": [10, 13, 31, 54, 56, 70], "quiz": 74, "quot": 20, "qu\u00e9bec": [22, 109, 110], "r": [12, 13, 15, 17, 25, 26, 31, 32, 40, 42, 56, 59, 67, 72, 79, 87, 98], "r0": 110, "r1": 110, "r1c4": 110, "r2": 110, "r20190908": 27, "r20230118": 94, "ra": 81, "raamana": 6, "rabbani": 22, "rabbit": 78, "rad6005": 22, "radiofr\u00e9qu": 22, "radiol": 6, "radiologi": 110, "radiologist": 6, "radiu": 42, "rai": 4, "rais": [29, 94], "rajiv": 75, "ram": [15, 17, 63], "ran": 63, "random": 17, "randomli": 42, "rang": [17, 24, 29, 32, 75, 78], "rank": 110, "raoul": 107, "rapi": 13, "rapid": [79, 88], "raspberri": [101, 102], "rat": 78, "rate": 79, "rater": 24, "rather": [10, 13, 17], "ratio": 20, "raw": [6, 26], "rbe": 17, "rbiq": [20, 109], "rc": 63, "rc1": 70, "rcb": 17, "re": [1, 10, 15, 20, 24, 28, 55, 62, 67, 94, 97, 110], "reach": [15, 39, 91], "read": [0, 10, 17, 25, 26, 28, 31, 32, 39, 40, 67, 70, 71, 82, 94, 101, 107, 110], "readabl": [24, 31, 42, 110], "reader": 94, "readi": [80, 94, 110], "readm": [27, 39, 40, 72, 110], "readthedoc": 31, "real": [6, 24, 75, 98], "realist": [3, 75], "realli": [18, 22, 40], "realtim": 105, "reason": [3, 20, 24, 67], "rebas": 94, "reboot": [35, 62, 63], "rebuild": [17, 35], "rec": 24, "receipt": [20, 99], "receiv": [3, 14, 15, 17, 20, 22, 24, 42, 67, 75, 78, 99, 100], "recent": [6, 31, 39, 70], "recherch": [20, 110], "recip": [27, 40, 63], "recogn": [67, 71], "recognit": 3, "recommend": [1, 6, 10, 13, 15, 20, 24, 28, 39, 67, 99, 110], "recon": [6, 75, 80], "reconnaiss": 22, "reconnect": 15, "reconstruct": [3, 6, 22, 75], "record": [19, 40, 48, 67, 74], "recov": 27, "recoveri": 75, "rectangular": 110, "recto": 20, "recurs": [31, 32, 67], "red": [32, 51, 87], "redhat": [15, 40], "redirect": [5, 12], "reduc": [20, 24, 27, 75, 79, 101], "redund": 70, "reev": 109, "ref": [39, 99], "refactor": 94, "refclk": 17, "refer": [3, 10, 17, 20, 22, 24, 39, 75, 94], "referenc": 110, "refin": 3, "reflect": 24, "reflog": 39, "refresh": 40, "refrid": 99, "refund": 20, "regaffin": 42, "regard": [20, 24, 29], "regina": 94, "region": [17, 24, 75], "regist": [13, 20, 67, 75, 98, 100], "registr": [10, 20, 42, 70, 75], "registri": 54, "regkei": 17, "regress": [22, 94], "regular": [15, 40, 74], "regularli": [26, 88], "reihaneh": 22, "reimburs": [21, 76], "reinforc": 22, "reinstal": [39, 56, 62, 105], "rejsnooptran": 17, "rel": [15, 42, 43, 62], "relat": [6, 21, 24, 28, 53, 67, 75, 94], "relationship": 3, "relax": [22, 107], "relaxometri": 3, "releas": [17, 35, 43, 70, 71, 72, 73, 94], "relev": [1, 10, 22, 24, 28, 29, 35, 40, 91], "reliabl": 3, "relink": 56, "reload": [62, 63, 67], "rememb": [28, 39], "remind": 76, "remot": [17, 27, 40, 101], "remote_repo": 39, "remotehost": 47, "remount": 66, "remov": [15, 32, 35, 42, 56, 62, 67, 70, 87, 94], "remplir": 109, "ren": 75, "renam": [24, 39, 67], "render": [35, 94], "rensgen": 82, "rent": 97, "rental": 97, "reopen": [17, 82], "reorient": 24, "repair": 51, "repeat": [1, 20, 94], "repertoir": 98, "replac": [28, 39, 67], "replica": 17, "repo": [27, 39, 66, 73, 94], "report": [17, 24, 27, 40, 90, 94, 110], "repositori": [15, 24, 38, 40, 53, 91, 94, 110], "repository_nam": [24, 39], "repres": [24, 75, 94], "represent": [3, 22], "reproduc": [27, 94, 110], "reprographi": 20, "reqen": 17, "request": [10, 15, 17, 21, 22, 59, 79, 80, 81, 82, 88, 99, 110], "requir": [10, 13, 15, 20, 27, 47, 54, 55, 66, 70, 71, 72, 76, 80, 85, 87, 94, 98, 110], "requri": 15, "resampl": [20, 24, 67], "resamplingfactor": 24, "rescan": 75, "research": [0, 15, 20, 23, 24, 29, 73, 74, 85, 109, 110], "reseau": 102, "reserv": [76, 80], "reset": [18, 38, 67, 80], "resetpassword": 67, "resid": 6, "resist": 99, "resiz": 17, "reslic": 51, "resolut": [3, 15, 20, 24, 41, 72], "resolv": [31, 67], "reson": [3, 6, 9, 78, 110], "resourc": [1, 13, 15, 17, 29, 67, 70, 82, 91, 110], "resp": 75, "respect": [20, 63, 88, 94, 107], "respir": 75, "respiratori": 75, "respons": [10, 13, 27, 39, 79, 94, 110], "responses_to_review": 110, "ressourc": [95, 98], "rest": 39, "restart": [54, 62, 67], "restic": 27, "restic_password": 27, "restic_repositori": 27, "restrict": 26, "restrictedboltzmannmachin": 37, "restructur": 94, "result": [10, 24, 39, 42, 90, 110], "resum": 62, "retain": 27, "retim": 17, "retpolin": 17, "retriev": [3, 79], "return": [17, 67, 82], "retyp": 15, "reus": 24, "rev": [6, 9, 17], "rev1a": 38, "revers": [3, 31], "review": [3, 6, 9, 10, 27, 28, 39], "revisit": 3, "reward": 22, "rewritten": 27, "rf": [3, 31, 40, 63, 67, 78, 82, 105], "rf_circuit_fabrication_rul": 108, "rfov": 75, "rfxg1": 105, "rg": 99, "rg174u": 99, "rg316u": 99, "rg58u": 99, "rg6": 99, "rgpin": 110, "richard": 109, "rick": 109, "rid": 40, "right": [1, 12, 15, 17, 20, 26, 28, 39, 51, 63, 71, 72, 84, 89, 91], "rigid": [42, 99], "ring": 99, "rise": 78, "rish": 22, "rj": 9, "rk": 99, "rlxdord": 17, "rm": [31, 35, 39, 54, 63, 67], "rm_firmware_act": 17, "rmam": 87, "rmi": 54, "rn": 67, "rnam": 87, "roam": 85, "robot": 22, "rocklandmd": 98, "rod": 78, "roemer": 6, "roger": [39, 99], "rohan": 22, "roi": [22, 51], "roken": 75, "role": 9, "rolland": 1, "rollov": 17, "rom": [17, 63], "roman": 17, "rome": 20, "romeo": 75, "room": 78, "root": [13, 14, 15, 17, 24, 26, 27, 43, 54, 55, 63, 75, 102], "rootlet": 24, "rootlets_dseg": 24, "rosemont": 98, "rosenberg": [17, 47, 87], "rosin": 3, "rossignol": 9, "rotat": 42, "rotond": 1, "roughli": 40, "round": 99, "rout": 17, "routin": 41, "royal": 98, "rp": 94, "rsa": [31, 39, 53], "rsn": 102, "rsna": 6, "rst": 94, "rsync": [27, 40, 79], "rtx": [15, 17], "rudko": 22, "rule": [10, 19, 22, 94, 108, 110], "run": [12, 13, 15, 17, 24, 26, 27, 28, 31, 35, 38, 39, 40, 42, 55, 59, 63, 64, 66, 67, 70, 71, 72, 84, 85, 91, 94, 102], "rupa": 31, "rw": [26, 40], "rx": 110, "rxcy": 110, "rxerr": 17, "rxof": 17, "ryyyymmdd": [27, 94], "r\u00e8glement": 22, "r\u00e9g\u00e9n\u00e9ratric": 22, "r\u00e9seau": 22, "s1": 32, "s1082687": 40, "s15564390": 40, "s2": 32, "s28305": 40, "s3": [27, 40, 59], "s7183853": 40, "sa": 1, "sacr\u00e9": 98, "safari": 67, "safe": [27, 40, 99], "safeti": [79, 80], "sag": 24, "sag_t2w": 24, "sag_t2w_label": 24, "sai": [18, 22, 28, 31, 35, 36, 39, 40, 56, 67, 99], "said": 10, "sainsmart": 104, "saint": [98, 110], "salloc": 13, "same": [13, 15, 17, 18, 24, 28, 40, 42, 43, 51, 70, 76, 80, 85, 94], "sametmax": 31, "sampl": [3, 35, 42, 78, 99], "san": [1, 20], "sanchez": 109, "sant": 98, "santa": 98, "sant\u00e9": [98, 110], "sapien": 24, "sarath": 22, "sat": 75, "satellit": 3, "satisfi": 19, "save": [13, 19, 20, 24, 28, 31, 40, 42, 51, 71, 85, 99, 110], "savefig": 73, "sbatch": 13, "sc": [24, 75], "sc_seg": 24, "sc_softseg": 24, "scale": [13, 22, 42, 75], "scan": [12, 75, 79, 80, 92, 99, 110], "scanner": [67, 75], "scenario": [20, 94], "scene": 10, "schedul": 10, "scheme": [44, 71], "schemefil": 44, "schmeelk": 109, "scholarship": [20, 96], "schollenberg": 6, "school": [22, 72, 100], "schwab": 9, "schwartz": 9, "schweinhardt": 22, "sci": [9, 24], "scienc": [3, 17, 22, 29, 67, 110], "scientif": 20, "scientifica": 20, "scikit": [33, 37], "scipi": 73, "sclerosi": [3, 20, 24], "scm": 39, "scope": [67, 73, 94], "scotland": 20, "scott": 57, "scp": [12, 13, 17, 79], "scratch": [12, 13, 15], "screen": [14, 15, 17, 35, 51, 72, 74, 94], "screencaptur": 67, "screenflow": 67, "screenshot": [17, 74, 94], "scribl": 102, "script": [15, 17, 24, 25, 26, 27, 31, 36, 38, 42, 43, 54, 66, 67, 73, 84, 85], "scripts_data": 43, "scroll": 31, "sct": [1, 13, 15, 20, 24, 26, 42, 47, 54, 66, 75, 94], "sct_5": 24, "sct_crop_imag": 24, "sct_deepseg_sc": 24, "sct_dev": 1, "sct_dir": [42, 66], "sct_gener": 1, "sct_imag": 87, "sct_orient": 51, "sct_pipelin": 13, "sct_propseg": 13, "sct_register_to_templ": 24, "sct_resampl": 24, "sct_test": [12, 15, 26], "sd": [17, 102], "sdb1": 17, "sde": 17, "sdelet": 63, "sdist": 73, "sdk": 70, "se": [24, 101], "seara": 6, "search": [1, 28, 31, 40, 67, 70, 71, 94], "seashor": 67, "seat": 82, "sebastien": 22, "sebsauvag": 31, "sec": [20, 66, 76], "second": [20, 67, 80, 94], "secondari": 17, "secret": [14, 73], "section": [10, 13, 15, 24, 28, 42, 43, 51, 63, 76, 81, 94, 96, 103, 110], "secur": [15, 17, 18, 28, 67, 85], "sed": [32, 40, 87], "sediment": 107, "see": [10, 12, 13, 15, 17, 18, 20, 22, 24, 27, 28, 29, 32, 35, 36, 38, 39, 40, 42, 47, 55, 67, 75, 76, 79, 80, 84, 85, 87, 90, 94, 98, 110], "seed": 67, "seem": [10, 42, 56, 70, 75], "seen": [10, 54, 55], "seg": 24, "segment": [4, 24, 34, 42, 48, 75, 94], "seif": 9, "select": [1, 4, 17, 18, 19, 20, 22, 25, 28, 36, 51, 53, 63, 64, 70, 75, 84, 95, 110], "self": [3, 22, 28, 94], "sell": 97, "seller": 99, "sem": 110, "semain": 1, "semant": 3, "semest": 10, "semi": [3, 4, 99], "semicolon": 87, "seminar": [19, 20, 22], "send": [10, 13, 19, 20, 22, 31, 67, 74, 75, 76, 79, 80, 82, 110], "sender": 14, "sens": 75, "sensor": 17, "sent": [10, 14, 27, 39], "seoul": 20, "separ": [24, 43, 62, 82, 87], "sept": 20, "septemb": 10, "seq": [6, 32], "sequenc": [3, 15, 24, 25, 34], "seri": [6, 32, 51], "serr": 17, "serv": [24, 39, 82], "server": [12, 17, 23, 24, 25, 26, 27, 31, 39, 40, 54, 66, 72, 79, 82, 86, 108], "serveur": 13, "servic": [15, 20, 35, 54, 79, 85, 86, 91, 94, 98, 110], "session": [13, 15, 17, 24, 31, 35, 40, 71, 76, 79, 80, 110], "session_manag": 15, "sessionnam": 79, "sessionname_x_x": 79, "set": [4, 14, 15, 17, 20, 27, 28, 31, 35, 36, 39, 40, 51, 54, 63, 66, 70, 72, 73, 78, 82, 84, 85, 87, 94, 101], "setdefaulttyp": 67, "setfil": 31, "settl": 100, "setup": [12, 73, 81, 82, 87], "seulement": [1, 20], "sever": [15, 17, 20, 24, 28, 31, 32, 39, 40, 47, 63, 73, 75, 94, 109], "sex": [24, 75], "sform": 49, "sftp": [12, 27, 67], "sg3vifzk": 38, "sh": [13, 15, 17, 31, 32, 38, 42, 59, 62, 66, 67, 84, 87], "sha1": [39, 40], "sha1e": 40, "sha2": 39, "sha224": 40, "sha256": 40, "sha384": 40, "sha3_224": 40, "sha3_256": 40, "sha3_384": 40, "sha3_512": 40, "sha512": 40, "shape": [17, 22, 44, 67], "shapeony": 67, "share": [1, 8, 13, 15, 24, 25, 26, 28, 31, 39, 40, 59, 70, 74, 84, 90, 97, 109], "sharepoint": 14, "shasum": 31, "sheet": [39, 72, 73, 82, 99, 101], "shell": [28, 30, 32, 62, 66, 67, 73, 83, 84, 95], "sherbrook": 13, "shield": [78, 99], "shift": [58, 67, 75, 101], "shim": [1, 47, 78, 82, 94], "shmuel": 22, "shop": [99, 101], "short": [10, 39, 75, 79, 107], "shortcut": [3, 15, 31, 67], "shot": 75, "should": [10, 15, 17, 20, 21, 24, 26, 27, 28, 31, 35, 39, 40, 42, 43, 55, 66, 71, 73, 80, 85, 88, 90, 94, 99, 100, 110], "shouldn": 40, "show": [40, 54, 63, 67, 73, 75, 98], "showhid": 67, "showhidden": 67, "shown": [15, 67], "showproduct": 105, "showq": 13, "showterm": 74, "shrink": [42, 63, 75], "shut": 62, "shutdown": [63, 67], "shy": [0, 27], "si": [14, 75, 102], "sica": 31, "siddiqi": 22, "side": [20, 39], "sidebar": 67, "siemen": [15, 25, 75, 80], "sienax": 75, "sigma": [99, 107], "sigmaaldrich": 107, "sign": [15, 20, 28, 39, 59, 79, 86], "signal": [7, 110], "signalis": 20, "signatur": [31, 67], "signaux": 22, "similar": [20, 62, 85], "simmri": 6, "simon": [22, 29], "simpl": [4, 22, 31, 39, 40, 57, 94, 110], "simpleemergencystop": 102, "simpler": 67, "simpli": [20, 39, 40, 42, 70, 85], "simul": [6, 15, 22], "simultan": [3, 15], "sinc": [1, 39, 70], "singapor": 20, "singh": 9, "singl": [17, 24, 28, 32, 40, 75, 110], "sinon": 1, "sir": 98, "site": [24, 57, 67], "situat": 82, "sium": 20, "six": 38, "size": [3, 17, 20, 26, 28, 40, 72, 75, 78], "si\u00e8g": 1, "sk": 99, "skein256": 40, "skein512": 40, "sketchup": 15, "skin": 29, "sklearn": 37, "skype": 67, "slack": [1, 15, 28, 67, 82, 83], "slant": 74, "slash": [39, 94], "sleepwatch": 67, "slic3r": 101, "slice": [51, 75, 110], "slice_axi": 94, "slide": [19, 20, 22, 90, 110], "slideshar": 75, "slip": 88, "slot": [79, 80], "slotclk": 17, "slotpowerlimit": 17, "slow": 40, "slower": [17, 42], "slurm": 13, "sm": [9, 31], "sma": 99, "small": [3, 13, 40, 42, 67, 75, 94, 109], "smaller": [13, 20, 42, 51], "smam": 87, "smart": 39, "smb": [15, 25, 26, 99], "smi": 17, "smit": 6, "smith": 75, "smooth": 40, "smp": 17, "smtp": 86, "snap": 42, "snapshot": [27, 39, 90], "snc": 20, "snd_hda_intel": 17, "snopyta": 31, "snow": 67, "so": [0, 1, 10, 13, 15, 17, 20, 22, 26, 28, 31, 39, 40, 55, 56, 63, 67, 70, 82, 85, 91, 94, 102, 109, 110], "sober": 74, "social": 29, "societi": 109, "socratica": 73, "soft": [24, 39], "softseg": [24, 75], "softwar": [0, 4, 13, 25, 26, 30, 36, 38, 45, 46, 47, 48, 64, 70, 72, 75, 81], "software_al": 6, "sold": 99, "solid": 15, "solut": [3, 15, 39, 91, 107], "solv": [10, 27, 35, 73], "some": [3, 10, 13, 15, 20, 22, 24, 25, 26, 28, 39, 42, 56, 67, 70, 71, 72, 81, 82, 85, 90, 94, 98], "somedomain": 39, "someon": [15, 27, 31, 39], "someth": [13, 20, 27, 28, 31, 32, 39, 40, 42, 102], "sometim": [40, 51, 67, 110], "somewhat": 40, "somewher": 82, "sop": [78, 101, 105], "sop_add_linux_station_gram": 84, "sort": [15, 31, 67], "sound": 40, "sourc": [6, 12, 13, 15, 17, 24, 31, 38, 40, 42, 45, 54, 57, 59, 63, 67, 70, 71, 73, 74, 84, 87, 94], "source_branch": 39, "source_id": 24, "source_reg": 42, "sourcedata": 24, "sourceforg": [6, 42, 60], "south": 20, "space": [1, 3, 13, 17, 24, 31, 40, 42, 63, 67, 75, 82], "spain": 20, "spam": 14, "spare": 17, "spatial": 34, "spatialrefer": 24, "spec": [15, 16, 22, 24, 35, 101], "speccycl": 17, "speci": 24, "special": [10, 24, 28, 32, 94, 107], "specif": [13, 15, 17, 24, 27, 28, 31, 40, 76, 82, 100, 108, 110], "specifi": [13, 15, 20, 24, 39, 67, 73], "spectr": 22, "spectroscopi": 22, "spectrum": 99, "speed": [17, 101], "speeddi": 17, "spend": 20, "spent": [17, 82], "sphinx": 94, "spinal": [20, 24, 47, 94, 95, 109, 110], "spinalcordmri": [13, 75], "spinalcordtoolbox": [19, 20, 39, 54, 87], "spinalcordtoolbox_dev": 39, "spinbench": 6, "spine": [24, 75], "spiral": 75, "spline": [7, 24, 41], "splineord": 42, "spondylot": 24, "sponsor": 13, "spot": [51, 75], "spotlight": 67, "spread": 40, "spreadsheet": 14, "springer": 3, "sprung": 31, "sp\u00e9c": 22, "sqlite": 40, "squar": 75, "squash": 39, "squeue": 13, "sr": 39, "src": 12, "src_pad_reg": 42, "srcversion": 17, "ss": 31, "ssh": [12, 26, 27, 28, 47, 53, 79, 87, 102], "ssh3351": 22, "ssh3352": 22, "ssh5503": 22, "ssh_exchange_identif": 39, "sshf": 15, "ssid": 102, "ssl": 15, "st": 98, "stabil": 107, "stabl": [37, 38, 42, 94], "stackexchang": 87, "stackoverflow": 70, "staff": 85, "stage": [75, 93, 100, 109], "stagiar": 100, "stai": 43, "stand": [20, 24], "standard": [6, 13, 15, 20, 24, 35, 41, 42, 54, 99], "stanford": 107, "start": [12, 15, 19, 24, 25, 28, 32, 35, 39, 55, 63, 70, 80, 81, 90, 94, 95, 100, 101, 102, 110], "startxfce4": 15, "stat": [40, 102], "state": [3, 6, 16, 17, 39, 42, 67, 94], "state_old": 67, "statement": 20, "static": [6, 57, 70, 75], "station": [17, 39, 75], "statist": 67, "statistiqu": 22, "statu": [15, 17, 28, 39, 54, 67, 87, 94], "stavisi": 100, "std": [18, 70, 75], "std_dim1": 41, "std_dim2": 41, "std_dim3": 41, "stdenv": 40, "stdin": 15, "stdlib": 70, "stem": 29, "step": [15, 17, 24, 28, 31, 35, 38, 39, 44, 63, 66, 67, 71, 80, 82, 91, 94, 101], "stern": 22, "sthash": 38, "stick": 101, "stikov": [22, 110], "still": [27, 39, 55, 67, 70], "stipend": 20, "stl": [67, 101], "stochast": 3, "stockholm": 20, "stoke": 3, "stop": [15, 31, 35, 55], "storag": [14, 38, 63], "store": [17, 23, 24, 27, 32, 40, 51, 67, 99], "stori": 67, "stp": 60, "strang": 27, "strategi": 39, "stream": 67, "stream_executor": 17, "streamlin": 24, "strength": 78, "stress": 10, "string": [24, 31, 40, 42], "strong": 78, "strongli": [20, 39, 94], "structur": [3, 48, 70, 73, 75, 110], "stuctur": 24, "student": [0, 3, 10, 15, 20, 21, 22, 81, 82, 85, 90, 99, 100, 109, 110], "studentship": 20, "studi": [6, 10, 29, 79, 80, 100], "studio": 19, "stuf": 39, "stuff": [67, 90], "style": 39, "su": [27, 59, 62, 63], "sub": [24, 31, 40, 58, 59, 75, 76, 110], "subcatagoryb": 99, "subfield": 3, "subfold": [12, 14, 90], "subfoldertoexclud": 31, "subject": [13, 27, 31, 32, 39, 40, 59, 72, 75, 94], "subject_a": 32, "subject_b": 32, "subject_list": 32, "subjectid": 24, "sublet": 97, "sublim": 15, "submiss": 90, "submit": [12, 13, 20, 91, 92, 99], "submodul": 39, "subscrib": [1, 88, 93], "subscript": 20, "subsequ": 24, "substat": 17, "substr": 32, "substrat": [44, 99], "subsystem": 17, "subvent": 109, "success": 17, "successfulli": [28, 87], "sud": 98, "sudo": [15, 26, 31, 35, 38, 39, 50, 56, 62, 63, 66, 67, 70, 71, 102], "suffici": [24, 39], "suffix": [80, 110], "sugar": 73, "suggest": [20, 42, 70, 73, 94, 100, 110], "suit": [15, 94, 98], "suitabl": 78, "sulfat": 107, "summar": 94, "summari": [39, 42], "summer": 22, "sun": 12, "supercomput": 40, "supervis": [3, 4, 22], "supervisor": [1, 10, 13, 20, 82, 90, 95, 109, 110], "suppli": 96, "supplic": 102, "supplier": 108, "support": [3, 4, 10, 17, 21, 24, 27, 32, 38, 40, 42, 55, 67, 70, 80, 85, 101, 110], "suppress": 56, "sup\u00e9rieur": [1, 22, 109], "sur": 20, "sure": [10, 13, 20, 24, 28, 39, 50, 66, 67, 70, 85, 88, 93, 94, 98, 99, 109], "surfac": [48, 75], "surfact": 107, "surgic": 75, "surnam": 86, "surpris": 17, "surround": 75, "survei": 3, "suscept": 75, "sushi": 1, "suspend": [62, 67], "suzuki": 6, "sv": 17, "sven": 39, "sweden": 20, "swift": 78, "swig": 38, "switch": [35, 67, 75, 85], "switzerland": 20, "sxm2": 17, "sy": [17, 40], "sydnei": 20, "symlink": 40, "symmetri": 42, "symptom": 40, "symr": 20, "syn": 42, "sync": [1, 27, 28, 59, 67], "synced_fold": 62, "syndicat": 93, "synonym": 24, "syntax": [31, 94], "synthesi": 3, "synthet": 75, "sysadmin": 27, "sysctl": 102, "sysf": 17, "syslog": 67, "system": [13, 14, 15, 17, 40, 54, 55, 56, 63, 66, 67, 70, 78, 80, 86, 91, 92, 102, 105, 110], "system76": 99, "syst\u00e8m": 22, "s\u00e9bastien": [15, 22], "s\u00f8rensen": 3, "t": [0, 3, 6, 13, 15, 17, 18, 20, 26, 27, 28, 31, 35, 40, 42, 44, 53, 54, 55, 56, 63, 67, 70, 71, 72, 75, 79, 87, 88, 94, 100, 107, 110], "t0e0ormq1432652171008": 109, "t1": [72, 75, 107], "t1w": [24, 32], "t2": [13, 41, 72, 75, 107], "t2_seg": 31, "t2_seg_manu": 31, "t2_smooth": 41, "t2_z_smooth": 41, "t2d": 42, "t3": 72, "t3d": 42, "t4": 72, "t5": 72, "t6": 72, "t7": 72, "t8": 72, "t_commonmod": 17, "t_pwron": 17, "taag": 74, "tab": [24, 28], "tabl": [1, 24, 66, 110], "tabort": 17, "tabul": 87, "tacki": 67, "tag": [1, 24, 27, 40, 88, 110], "tag1": 39, "tag2": 39, "tag_xx": 39, "tagnam": 39, "taho": 40, "tail": 87, "taill": 75, "take": [17, 22, 28, 29, 39, 63, 80, 94, 99, 100], "taken": [22, 24, 35, 79], "tal": 22, "talbott": 9, "talk": [3, 6, 10, 54], "tall": 75, "talon": 98, "tandem": 24, "tangui": [15, 44], "taniarascia": 57, "tank": 21, "tape": 101, "tar": [12, 38, 40, 70], "tardif": 22, "target": [3, 15, 17, 38, 51, 70], "targetfilenam": 51, "task": [15, 17, 28, 88, 94], "taso": 6, "tatum": 15, "tbd": 20, "tc": 17, "te": 110, "tea": 20, "teach": 6, "teacher": 3, "team": [17, 40, 43, 94], "teamview": 15, "tech": [22, 79, 110], "technic": [3, 6, 15, 99], "techniqu": 3, "technologi": [6, 22, 29, 41], "tedpella": 99, "tee": [32, 38], "telemedicin": 98, "tell": [28, 55, 67, 71], "temp": [12, 17, 24, 26], "temper": 94, "temperatur": [17, 78, 101], "templat": [20, 24, 58, 71, 73, 90, 110], "template_nam": 24, "temporari": [24, 26], "temporarili": [39, 87, 90], "ten": 110, "tens": 39, "tensor": 17, "tensorflow": [13, 17, 55], "tensorflow_pkg": 38, "term": [39, 98], "termin": [12, 13, 17, 28, 31, 32, 35, 39, 50, 53, 54, 62, 63, 70, 71, 74, 87, 94], "terra": 15, "terranova": 25, "tesla": [15, 17], "test": [10, 13, 17, 26, 28, 32, 35, 38, 64, 79, 87, 99], "test_al": 87, "test_sct": 87, "test_tensorflow": 38, "testsuit": 40, "text": [15, 28, 39, 40, 42, 57, 67, 84, 94, 110], "textedit": [87, 102], "textpand": 67, "tf": 17, "tfevent": 17, "tfu1uw": 66, "than": [12, 13, 17, 20, 24, 31, 42, 51, 56, 63, 67, 94, 99, 100], "thank": [81, 90, 94], "thedisk": 63, "thei": [10, 13, 15, 20, 24, 28, 35, 39, 40, 71, 75, 78, 91, 94, 98, 99, 107], "thelinuxdaili": 63, "them": [10, 13, 15, 17, 19, 20, 24, 26, 29, 39, 40, 42, 43, 54, 56, 62, 71, 76, 79, 94, 107, 110], "theme": [57, 94], "themselv": 40, "theoret": [22, 94], "thereaft": 72, "therefor": [24, 32, 42, 55, 71, 110], "thermo_scientific_nalgene_narrow_mouth_economy_bottle_hdpe_1000_ml_6_pk": 99, "thesi": [6, 10, 22], "thi": [0, 1, 3, 5, 13, 14, 15, 17, 20, 21, 22, 24, 25, 26, 27, 28, 29, 31, 35, 36, 38, 39, 40, 41, 42, 43, 44, 47, 51, 53, 54, 55, 56, 59, 62, 63, 67, 70, 71, 72, 74, 75, 76, 78, 79, 80, 81, 82, 89, 90, 94, 96, 97, 98, 99, 100, 102, 103, 107, 110], "thick": [44, 99], "thing": [10, 20, 40, 84, 88, 94], "think": [10, 15, 54], "thinli": 40, "third": [41, 94], "thoma": [6, 9, 22, 107], "thompson": 9, "thoroughli": 10, "those": [24, 63, 64, 82, 94, 102, 110], "though": [40, 70], "thought": [29, 75], "thoughtbot": 39, "thousand": 40, "thread": [42, 94], "three": [42, 51, 67, 94], "through": [3, 24, 35, 40, 47, 67, 88, 94], "thu": [27, 51, 70], "thumb": 102, "thumbnail": 19, "thursdai": 99, "th\u00e9oriqu": 22, "ti": [17, 54], "ticket": [15, 21, 91], "tif": 40, "tild": 43, "tildevers": 31, "time": [3, 6, 9, 10, 13, 15, 17, 18, 19, 20, 22, 26, 28, 44, 67, 75, 76, 78, 79, 94, 98, 100, 107, 109], "timeout": [15, 17], "timeoutdi": 17, "timer": [20, 94], "timet": 10, "timetrack": 67, "tip": [12, 20, 39, 67, 83, 98], "tips_and_trick": 67, "tissu": [75, 107], "titan": [15, 17, 35, 38, 110], "titl": [19, 20, 22, 28, 39, 43, 72], "title_of_your_abstract": 20, "tk": 70, "tkip": 102, "tl": 85, "tldp": 32, "tlp": 17, "tlppfxpre": 17, "tmax": 44, "tmean": 67, "tmp": [15, 17, 38, 42, 54], "tmp_reg": 42, "tmpdir": 17, "toc_0": 57, "todo": [1, 6, 42], "togeth": [40, 55], "token": 73, "told": 70, "tone": 29, "too": [31, 40, 56], "took": [19, 22, 67], "tool": [4, 6, 15, 17, 27, 29, 30, 38, 39, 41, 46, 51, 54, 67, 70, 71, 110], "toolbox": [1, 3, 6, 20, 47, 94, 95], "toolkit": [15, 17, 35, 42, 55, 73], "top": [1, 20, 26, 28, 31, 32, 35, 39, 51, 67, 75, 99], "topic": [10, 22, 28, 29, 35], "topolog": 3, "tor": 24, "tor001": 24, "torch": 17, "torchcontrib": 3, "torchio": 75, "tordcm001": 24, "torhc001": 24, "toronto": [20, 24, 99], "torrent": [40, 67], "torrentpars": 40, "total": 26, "totalfieldmeshsizeatbaselevel": 42, "totalfieldvarianceinvoxelspac": 42, "touch": [31, 40, 54, 67], "touchpad": 67, "toward": [3, 10], "tphcomp": 17, "tput": 87, "tr": 75, "tr1": 70, "trace": 40, "track": [4, 9, 17, 24, 58, 67, 91, 110], "tracker": [15, 21], "trackvi": 15, "tradit": 20, "trail": 39, "train": [3, 15, 20, 75, 80, 82], "trainabl": 4, "trait": 70, "traitement": 22, "transact": 110, "transfer": [3, 22, 24, 63, 75, 76, 78, 79, 110], "transferr": 3, "transfo": 42, "transform": [3, 51, 75], "transistor": 75, "translat": [64, 75], "transmedtech": [109, 110], "transmiss": 67, "transmit": [3, 6, 17, 75, 78], "transpar": 20, "transpend": 17, "transport": 20, "transvers": 51, "trap": 99, "trauma": 9, "traumat": [9, 24], "travel": [97, 101], "travisci": 94, "treatment": [20, 71], "tree": [15, 28, 39], "trerr": 17, "tri": 40, "triag": 94, "trick": [12, 67], "tridimensionnel": 22, "trigger": 67, "trim": 19, "trivial": 94, "troubleshoot": 101, "true": [17, 40, 42, 67], "truncat": 39, "trusti": 54, "trusty64": 62, "truth": 3, "try": [15, 20, 26, 28, 31, 39, 40, 42, 67, 75, 94], "tr\u00e9": 22, "ts_audio": 67, "ts_video": 67, "tsv": 87, "ttm": 31, "tumor": 24, "tunabl": 78, "tune": 78, "turn": [10, 58, 67, 73], "tutel": 109, "tutori": [6, 7, 13, 15, 20, 31, 37, 42, 44, 57, 62, 63, 70, 94], "tw": [6, 105], "twice": 44, "twine": 73, "two": [15, 20, 24, 26, 35, 40, 42, 47, 55, 67, 79, 82, 94, 97], "twrr128": 17, "txt": [13, 32, 42, 43, 56, 70, 87, 94, 102], "type": [12, 15, 17, 20, 24, 25, 31, 35, 39, 40, 50, 53, 56, 58, 66, 67, 70, 71, 75, 79, 86, 94, 95], "type_trait": 70, "typic": [10, 15, 17, 20, 24, 39, 71, 94], "u": [13, 15, 27, 29, 31, 35, 39, 63, 67, 75, 79, 99, 105], "u000000": 26, "u108545": [17, 26], "u12345": 17, "u8lwqy1dukg": 63, "u918374": 17, "u932945": 26, "ubuntu": [15, 35, 38, 40, 50, 54, 55, 59, 62, 66, 84], "udem": [10, 13, 20, 22], "udf": 17, "uemsk": 17, "uesta": 17, "uesvrt": 17, "ug": 110, "uhf": 6, "ui": 67, "uid": [13, 40, 63], "uk": [20, 27, 40, 49, 67, 110], "ultid": 99, "ultimak": 101, "ultra": 6, "ultrashort": 3, "um": [44, 99], "umcu": 6, "umf": 105, "uml": 74, "umlet": 74, "umletino": 74, "umontr": 20, "umount": 26, "un": [31, 109], "unarchiv": 67, "unattend": 15, "unbound": 6, "uncom": 15, "uncomfort": 20, "uncorr": 17, "under": [15, 20, 24, 25, 27, 28, 39, 40, 43, 53, 67, 76, 79, 80, 86, 90, 105, 109, 110], "undergradu": 22, "underscor": 24, "understand": [3, 6, 10, 24, 39, 40, 94], "undo": 39, "unexpect": 28, "unf": [12, 20, 26, 76], "unf01": 59, "unfix": 75, "uni": 22, "unif": 3, "uniform": 44, "uninit": 40, "uninstal": [38, 62], "uniqu": [20, 24, 31, 109], "unit": [13, 20, 24, 94, 110], "univers": [29, 99], "universit\u00e9": 110, "unix": [31, 40, 54, 67, 70, 73, 87], "unless": [10, 16, 40], "unlimit": [17, 42], "unlink": 56, "unlist": 19, "unload": 67, "unlock": 40, "unmaintain": 31, "unmount": [26, 67], "unnecessari": [15, 39], "unpack": [24, 70], "unprocess": 24, "unpublish": 39, "unreason": 20, "unrol": 28, "unsernam": 79, "unset": [15, 40], "unstag": 39, "unsupervis": 3, "unsupport": [17, 39], "unsupreq": 17, "unsur": 95, "until": 70, "untrack": 39, "unumero": 85, "unwrap": [39, 75], "unxcmplt": 17, "unzip": [31, 43, 54, 102], "up": [0, 15, 17, 18, 20, 22, 25, 26, 28, 31, 35, 62, 67, 70, 76, 82, 85, 94, 107, 110], "upcom": 94, "updat": [1, 15, 17, 27, 28, 31, 35, 38, 40, 48, 54, 56, 59, 62, 63, 72, 84, 94, 110], "update_config": 102, "updatefieldmeshsizeatbaselevel": 42, "updatefieldvarianceinvoxelspac": 42, "upenn": 3, "upgrad": [15, 38, 40, 67], "upload": [14, 19, 20, 24, 27, 28, 31, 40, 50, 94], "upon": [20, 94], "upstream": [39, 94], "urgenc": 94, "urgent": 98, "url": [19, 24, 26, 28, 31, 39, 40, 64, 74, 94], "url_to_google_doc": 20, "url_to_repositori": 39, "us": [0, 1, 3, 4, 13, 14, 15, 16, 17, 19, 20, 23, 25, 26, 27, 28, 30, 31, 32, 35, 36, 40, 41, 42, 43, 44, 47, 48, 50, 51, 53, 55, 56, 59, 62, 64, 72, 75, 76, 79, 82, 87, 88, 91, 92, 94, 96, 98, 99, 101, 102, 108, 110], "usa": [20, 99, 110], "usabl": 71, "usag": [17, 67, 94], "usb": 101, "user": [4, 13, 15, 16, 17, 20, 26, 27, 28, 35, 37, 39, 42, 43, 50, 54, 63, 66, 67, 78, 79, 85, 86, 87, 94, 102], "usernam": [12, 13, 15, 17, 26, 28, 31, 39, 47, 56, 63, 66, 71, 79, 85, 101, 102], "usherbrook": [13, 20], "usi": 107, "usplast": 99, "usr": [17, 35, 38, 42, 59, 66, 67, 70, 71, 84, 87], "usual": [10, 14, 20, 24, 28, 31, 40, 71, 98], "utf": [15, 87], "utf8": 99, "util": [17, 38, 42], "utilis": [15, 86], "utilis\u00e9": 1, "utoronto": 41, "uuid": [17, 40], "uzai": 75, "v": [6, 9, 12, 13, 32, 35, 39, 42, 54, 55, 62, 64, 67, 75], "v000010ded": 17, "v1": [17, 42], "v10": 15, "v100": 15, "v2": 17, "v3": 70, "v6": 24, "v8": [15, 40], "vacat": 1, "vacuum": [78, 105], "vahid": 22, "valid": [15, 17, 19, 24, 27, 71, 79, 94], "valu": [3, 15, 17, 24, 39, 40, 42, 44, 51, 71, 75, 107], "van": 6, "vancouv": 20, "vanier": 109, "var": [32, 102], "vari": [75, 94], "variabl": [3, 12, 15, 24, 31, 32, 35, 39, 43, 70, 71], "varian": 78, "variant": 40, "variat": [3, 41, 75], "varieti": 26, "variou": [17, 21, 23, 25, 26, 29, 30, 67, 89, 91], "vb": 62, "vbguest": 62, "vboxguestaddit": 63, "vboxlinuxaddit": 63, "vboxmanag": 63, "vboxsf": 63, "vbrexjkizgo": 62, "vbshare": 63, "vc": [3, 17], "vc0": 17, "vdi": 63, "ve": [28, 39, 42, 98], "ve11c": 15, "ve12u": 15, "vector": 42, "vectori": 67, "veloc": 75, "vendor": [17, 21], "vendu": 99, "venv": [17, 73, 87], "venv3": 59, "venv_nam": 13, "verdict": 10, "verdun": 98, "veri": [20, 22, 40, 44, 67, 70, 79, 94, 99, 102], "verifi": [20, 24, 27, 35, 71, 73, 94], "vermag": 17, "versa": 40, "version": [13, 17, 20, 24, 26, 27, 28, 31, 35, 39, 50, 55, 67, 70, 71, 73, 74, 79, 97, 109, 110], "version_numb": 13, "vertebr": [24, 51, 72, 75], "vertebra": [24, 75], "vertebrae_dseg": 24, "vestigi": 94, "vf": 40, "vga": 17, "vgasnoop": 17, "vi": [31, 40, 63], "via": [3, 13, 15, 17, 39, 40, 44, 73, 75, 76, 79, 88, 94, 102, 105, 108], "vibrat": 78, "vice": 40, "victoria": 98, "vidaurreta": 6, "video": [3, 15, 17, 19, 39, 67, 101], "video_seg": 3, "vie": 22, "view": [14, 15, 28, 51, 67, 75, 99], "viewer": [15, 47, 51, 67, 73, 74], "vim": [38, 39, 53], "vimrc": 31, "vinaigr": 15, "virtual": [13, 17, 20, 31, 47, 62, 67], "virtual_box": 25, "virtual_env_config": 84, "virtualbox": [15, 40, 62], "virtualenv": [13, 17, 73, 84], "visa": 96, "visag": 43, "visibl": [19, 20, 36], "vision": [3, 33], "visit": [24, 28, 29, 82, 85], "visual": [3, 70, 101], "visualis": 15, "visualqc": 6, "vita": 10, "vlan": 15, "vlc": 67, "vm": [27, 62], "vm_share": 63, "vmdk": 63, "vncconfig": 15, "vncserver": 15, "vol": 6, "volatil": 17, "voltron": 99, "volum": [51, 67, 75], "volumetri": 3, "vop": 6, "vox": 41, "voxel": [20, 24, 41, 44], "voxeldim": 44, "vpn": [26, 27, 28, 72, 85], "vpn_": 15, "vq": 40, "vscode": [67, 102], "vt100": 64, "vtk": [42, 48], "vtk_dir": 70, "vtk_group_qt": 70, "vtk_group_rend": 70, "vtk_group_standalon": 70, "vtk_required_objcxx_flag": 70, "vtk_use_64bits_id": 70, "vtkbuild": 70, "vvd": 17, "vwr": 99, "vx": 39, "v\u00e9rifier": 75, "w": [6, 9, 13, 15, 25, 31, 32, 40, 67, 87], "wa": [10, 24, 28, 29, 39, 67, 70, 79, 87, 94], "wai": [15, 20, 24, 27, 39, 40, 70, 71, 75, 88], "wait": [13, 39, 98], "wakaba": 67, "wake": 67, "wakeup": 67, "walker": 44, "walltim": 13, "wang": 6, "want": [0, 6, 10, 14, 15, 17, 20, 25, 28, 31, 35, 36, 39, 41, 55, 56, 62, 63, 70, 71, 87], "warn": [28, 39, 40, 54, 73, 102], "warp": 75, "warp_comp": 42, "warp_veci": 42, "warp_vecx": 42, "warp_vecz": 42, "warpimagemultitransform": 42, "watch": 62, "water": [21, 78, 107], "watt": 78, "wav": 67, "wave": 75, "wayland1": 17, "wc": 31, "wdpagefitbestfit": 58, "we": [0, 1, 3, 13, 17, 24, 26, 27, 28, 29, 32, 39, 40, 47, 55, 59, 70, 75, 79, 82, 90, 94, 95, 110], "web": [6, 28, 39, 40, 53, 70, 93], "webapp": 40, "webdav": 40, "webpag": 42, "websit": [10, 13, 20, 22, 39, 57, 70, 80, 94, 99, 110], "webupd8team": 38, "wed": 17, "week": [10, 15, 20, 22, 27, 32, 99, 100, 109], "weekli": 27, "weight": [3, 42, 75, 99], "weiskopf": 9, "weka": 4, "welcom": [0, 81, 91], "well": [10, 22, 31, 40, 66, 67, 85], "were": [15, 22, 27, 38, 39, 94], "westcoast": 29, "westgrid": 13, "wget": [17, 31, 38, 40, 54, 102], "what": [1, 3, 6, 17, 20, 24, 27, 39, 40, 63, 94, 107], "whatev": [17, 31, 55], "wheelhous": 13, "wheezi": 66, "when": [1, 12, 13, 15, 19, 20, 24, 26, 28, 31, 39, 40, 47, 56, 62, 71, 72, 79, 85, 88, 91, 94, 102, 107, 110], "whenev": 94, "where": [12, 13, 17, 20, 22, 24, 26, 32, 35, 36, 39, 40, 41, 42, 55, 62, 63, 67, 70, 71, 79, 94], "wherea": 75, "wherei": [27, 40], "wherev": 40, "whether": [10, 20, 28, 85], "whetston": 9, "which": [3, 4, 10, 13, 15, 16, 17, 19, 26, 28, 36, 40, 41, 42, 47, 54, 56, 67, 70, 71, 75, 76, 78, 80, 94, 100, 107, 110], "whichev": 10, "while": [10, 15, 17, 20, 25, 28, 31, 32, 39, 40, 67, 94], "white": [3, 20, 24, 32, 87, 94], "whl": 38, "who": [15, 22, 76, 80], "whoami": 63, "whole": [3, 10, 17], "whom": 10, "wi": 39, "wide": [42, 67, 85], "width": [17, 20, 94], "wifi": 102, "wiki": [0, 13, 41, 42, 62, 63, 70, 94], "wikibook": 41, "wikipedia": 107, "william": 6, "wilson": 9, "win": 39, "window": [20, 26, 28, 39, 40, 42, 48, 54, 59, 63, 67, 75, 78, 85, 94, 102], "wing": [109, 110], "winsor": 42, "winter": 22, "winxp_idea": 25, "winxp_terranova": 25, "wire": 99, "wireless": [85, 110], "wise": 24, "wish": [15, 20, 31, 39, 67, 82], "within": [15, 20, 21, 24, 26, 31, 98], "without": [3, 4, 10, 15, 17, 24, 35, 40, 42, 50, 56, 67, 71, 73, 75, 85, 94, 100, 107, 110], "wl": 51, "wm": 24, "wma": 67, "women": 29, "won": [27, 28, 67, 70, 72, 94], "wong": 6, "wontfix": 94, "wood": 6, "word": [24, 39, 42, 110], "wordpad": 102, "wordpress": [42, 57], "work": [3, 6, 10, 13, 15, 21, 26, 28, 31, 40, 42, 56, 63, 64, 66, 67, 70, 73, 75, 82, 85, 95, 96, 110], "workaround": [56, 67], "workbench": 67, "workdir": 13, "worker": 13, "workflow": [3, 4, 24, 73, 87], "workforc": 29, "working_dir": 39, "workon_hom": 84, "workshop": 1, "workstat": 82, "worktre": 28, "world": [42, 85], "worm": 40, "wormhol": 31, "worri": 67, "worrisom": 3, "would": [1, 10, 20, 28, 29, 42, 75, 79, 94, 98], "wpa": 102, "wpa_supplic": 102, "wq": 31, "wrap": [39, 87, 94], "wrapper": [62, 70], "writabl": 31, "write": [10, 13, 15, 17, 22, 24, 26, 39, 40, 54, 67, 71, 74, 76, 94], "written": 24, "wrong": 28, "wrr128": 17, "wrr256": 17, "wrr32": 17, "wrr64": 17, "wsl": [15, 40], "wu": 22, "ww": 51, "wwest": 29, "www": [3, 6, 14, 20, 22, 38, 39, 41, 42, 57, 62, 63, 67, 70, 73, 74, 75, 79, 82, 93, 98, 99, 100, 101, 105, 107, 109, 110], "x": [4, 6, 9, 15, 17, 26, 31, 35, 38, 39, 40, 41, 42, 47, 63, 64, 67, 71, 72, 75, 78, 94, 99, 102, 107, 110], "x11": [15, 35, 54, 67], "x16": 17, "x3": 40, "x6sr565m5g": 104, "x86_64": [17, 35, 40, 70], "xarg": [17, 31, 40], "xclock": 64, "xcode": [15, 39, 70], "xdefault": 64, "xdisp": 64, "xeon": [15, 16], "xey": 64, "xgestur": 67, "xhost": 54, "xkcd": 90, "xlabel": 72, "xlim": 72, "xmax": 24, "xmin": 24, "xometri": 105, "xorg": [17, 35], "xquartz": [47, 54, 67], "xr": 26, "xrdb": [15, 64], "xresourc": 15, "xserver": [17, 35], "xsetroot": 15, "xstartup": 15, "xtick": 72, "xticklabel": 72, "xvzf": 38, "xx": 39, "xxx": [24, 39, 66], "xxyxz": 42, "xyz": [24, 28, 31], "y": [6, 9, 12, 15, 17, 32, 39, 42, 54, 59, 62, 75, 78, 110], "yaman": 3, "yan": 6, "yarn": 50, "ybit": 31, "ye": [35, 54, 67, 85, 110], "year": [10, 24, 27, 39, 90, 98, 109], "yellow": 32, "yesod": 40, "yet": [15, 39, 53, 72, 94], "ylabel": 72, "ylim": 72, "ymax": 24, "ymin": 24, "yml": 73, "yomayra": 110, "yosemit": 67, "you": [0, 1, 10, 12, 13, 14, 15, 17, 19, 20, 22, 24, 25, 26, 27, 28, 29, 31, 35, 36, 40, 41, 42, 44, 47, 48, 50, 51, 53, 54, 55, 56, 62, 63, 66, 67, 70, 71, 72, 73, 76, 79, 80, 81, 82, 85, 86, 87, 88, 90, 91, 92, 93, 94, 95, 97, 98, 99, 100, 101, 102, 103, 105, 107, 109, 110], "your": [1, 10, 12, 13, 14, 15, 16, 17, 19, 20, 22, 25, 26, 27, 28, 31, 32, 35, 36, 40, 42, 43, 50, 53, 54, 55, 56, 62, 63, 66, 67, 70, 71, 72, 76, 79, 80, 82, 85, 86, 87, 89, 90, 91, 92, 94, 95, 98, 99, 100, 101, 102, 109, 110], "your_branch": 39, "your_cas_password": 15, "your_cas_usernam": 15, "your_code_her": 102, "your_data": 80, "your_email": [39, 53], "your_env": 47, "your_hash_her": 102, "your_login": 39, "your_nam": 54, "your_password": 86, "your_path": 12, "your_polygrames_password": 15, "your_polygrames_usernam": 15, "yourself": [13, 15, 39, 55, 71, 79], "youtub": [3, 11, 31, 62, 67], "yue": 22, "yum": [54, 66], "yyyi": [31, 90], "yyyymmdd": 90, "yyyymmdd_": 90, "yyyymmddhhmm": 31, "z": [6, 13, 31, 32, 39, 42, 63, 75, 78, 105], "zaharchuk": 6, "zamboni": 40, "zcvhf": 12, "zero": [3, 13, 17, 32, 36, 63], "zerobin": 31, "zhao": 6, "zhuoqiong": 75, "zimbra": [1, 86], "zip": [17, 43, 79, 94], "zmax": 24, "zmin": 24, "zoom": [20, 51, 58, 75], "zshrc": 87, "zulli": 99, "zumbal": 75, "zur": 24, "zurich": 24, "zursci001": 24, "zxvf": 31, "\u00b2": 110, "\u00e0": [1, 22, 75], "\u00e9clairag": 1, "\u00e9cole": 15, "\u00e9galement": 75, "\u00e9lectriqu": 22, "\u00e9mergent": 22, "\u00e9pini\u00e8r": 109, "\u00e9tat": 22, "\u00e9thiqu": 22, "\u00e9tude": [22, 109], "\u00e9tudiant": 85, "\u00e9vident": 75, "\u00eele": 98}, "titles": ["\u2697\ufe0f Lab Manual", "\ud83d\udcc5 Calendar & Meetings", "\ud83d\udcda Bibliography", "Deep Learning", "Histology", "Theses", "MRI", "MRI Analysis", "Paperpile Folder", "Spinal Cord Injury", "\ud83d\udcd6 Comprehensive Exam", "\ud83d\udda5 Computing Resources", "\ud83d\udda5 Computers @CRIUGM", "\ud83d\udda5 Compute Canada", "\u2601\ufe0f Microsoft 365", "\ud83d\udda5 Computers @NeuroPoly", "CPU Clusters", "GPU Clusters", "\ud83d\udda8 Printer", "YouTube Procedure", "\u2708\ufe0f Conferences", "\ud83d\udcde Contact", "\ud83c\udf93 University Courses", "\ud83d\udcbe Data", "Dataset curation", "django", "duke", "Admin guide for data.neuro.polymtl.ca", "data.neuro.polymtl.ca", "\ud83e\udde9 EDI", "\ud83e\udd13 Geek tips", "Bash/Shell", "Script", "Deep Learning", "Conditional Random Fields (CRF)", "CUDA", "Misc", "Restricted Boltzmann Machines (RBM)", "Tensorflow", "Git & Github", "git-annex", "Image Processing Software", "Advanced Normalization Tools (ANTs)", "Anima", "Diffusion Simulator", "FreeSurfer", "FSL", "FSLeyes", "ITK-SNAP", "NIfTI", "OpenNeuro CLI", "OsiriX", "Various Software & Tools", "BitBucket", "Docker", "Docker for Deep Learning", "Dropbox", "Jekyll", "Microsoft Word", "OpenNeuro", "Sketchup", "Virtual Machines", "Vagrant", "VirtualBox", "XQuartz", "OS Guides", "Linux", "MacOSX", "Programming Languages", "C++", "Installation of VTK and ITK on Mac OS X", "Using XCode", "MATLAB", "Python", "Useful links/Software", "\ud83d\udca1 Ideas for Cool Projects", "\ud83e\uddf2 MRI Scanning", "Concordia (3T GE)", "MHI (7T Agilent)", "MNI/McGill (7T Terra)", "UNF (3T Prisma)", "\ud83d\udc4b Onboarding", "Campus Access", "Computer Setup", "\ud83d\udca1 Other configuration tips", "\ud83d\udcf6 Eduroam", "\ud83d\udce7 Email", "\ud83d\udcbb Shell Profile", "\ud83d\udde3 Slack", "Consultants and RA", "Google Drive", "Getting Started", "Infrastructure", "Postdoctoral fellows", "Software development", "Students and Interns", "\ud83d\udcce Practical Information", "\ud83c\udde8\ud83c\udde6 Living in Montreal", "\ud83c\udfe5 Medical", "\ud83d\udee0 Purchasing Supplies", "\ud83c\udf0e VISAs and Work Permits", "3D Printing", "OctoPrint", "\ud83d\udd27 RF Lab", "CNC machine", "Misc", "NeuroPoly Coils", "Phantoms", "PCB Manufacturing", "\ud83d\udcb0 Scholarships", "\u270d\ufe0f Academic Writing"], "titleterms": {"": 101, "04": 63, "1": [67, 70, 71], "10": 70, "108mm": 78, "120": 78, "14": 63, "140": 78, "184mm": 78, "19": 82, "1h": 78, "2": [67, 71], "205": 78, "210": 78, "22": 39, "2d": 67, "3": [67, 71], "300mhz": 78, "3018": 104, "305": 78, "3170cdw": 18, "3170cdw_": 18, "365": 14, "38": 78, "3d": 101, "3t": [77, 80], "4": [70, 71], "5": [35, 70], "6": 70, "60": 101, "7": 35, "7t": [78, 79], "9": 70, "AND": 32, "As": 67, "Be": 70, "FOR": 32, "IF": 32, "OR": 32, "TO": 39, "The": [10, 67], "Theses": 5, "_brother_hl": 18, "_errorlow_ton": 18, "abbei": [15, 16], "abstract": 20, "academ": 110, "access": [17, 26, 28, 55, 80, 82, 85], "accommod": 97, "account": [13, 14], "acknowledg": 110, "acquisit": 75, "adapt": [3, 105], "add": [39, 71, 84, 86], "add_linux_machine_to_gram": 84, "addit": 63, "address": 110, "admin": [15, 27, 71], "admiss": 22, "advanc": 42, "advic": 44, "advis": 82, "affect": [40, 85], "affili": [82, 110], "affin": 42, "after": 39, "agil": 78, "agnost": 17, "ai": 95, "alias": 39, "alwai": 58, "amend": 39, "an": [15, 28, 71, 94], "analysi": [3, 7], "anatom": 3, "anima": 43, "annex": 40, "anoth": [39, 67], "ansi": 32, "ant": [42, 66], "antsregistr": 42, "app": [84, 86], "appli": 3, "applic": 67, "ar": 39, "archiv": 67, "arrai": 32, "arriv": 82, "arteri": 6, "articl": 110, "asl": 6, "associ": [29, 89, 93], "author": 20, "autom": 67, "automat": 66, "avail": 28, "aw": 59, "award": 109, "awesom": 31, "b0": 6, "b1": 6, "back": 39, "background": 31, "backup": [15, 17, 27], "base": 31, "bash": 31, "bash_profil": 31, "basic": 62, "befor": 82, "being": 67, "between": [31, 39], "bibliographi": 2, "bid": 24, "big": 101, "binari": 48, "biomed": 22, "birdcag": 78, "bire": 15, "bitbucket": 53, "bodi": 94, "boltzmann": 37, "book": [1, 17, 76, 77, 79, 80], "boot": 67, "box": [62, 67], "branch": [39, 94], "brother": 18, "build": [24, 54, 70, 71], "build_docker_container_from_dockerfil": 54, "builder": 101, "bunch": 31, "c": 69, "c3d": 66, "ca": [27, 28], "cabl": 99, "calendar": [1, 76], "campu": [28, 82], "canada": 13, "cannot": [40, 67], "capacitor": 99, "capitan": 105, "captur": 67, "case": 24, "cc": 13, "cd": 67, "cedar": 13, "center": 67, "cento": 66, "chang": [28, 31, 39, 67, 85, 94], "change_folder_icon": 67, "changelog": 24, "characterist": 78, "check": [13, 31, 39, 40, 110], "checkout": 39, "checksum": 31, "chrome": 67, "cli": 50, "click": 67, "clinic": 110, "clone": [28, 39], "close": [39, 85], "cloud": 13, "cluster": [12, 15, 16, 17], "cnc": 104, "cnn": 3, "code": [17, 24, 32, 73, 94], "coil": [6, 22, 75, 77, 78, 105, 106, 110], "collect": 78, "color": 32, "colour": 32, "come": 39, "command": [15, 28, 32, 62], "comment": 110, "commit": [39, 94], "compar": 39, "comprehens": 10, "compress": 31, "comput": [11, 12, 13, 15, 22, 31, 82, 83, 92, 99], "concordia": 77, "condit": 34, "confer": 20, "config": [40, 67], "configur": [39, 84], "configure_virtualenvwrapper_under_linux": 84, "conflict": [39, 94], "connect": [15, 17, 28, 39], "connector": [99, 105], "consent": 79, "consult": 89, "contact": 21, "contain": [54, 55], "continu": [3, 94], "contribut": 39, "control": 6, "convent": [24, 39], "converg": 42, "convert": 24, "cool": 75, "copi": [31, 54, 67], "copy_file_into_contain": 54, "copymake_a_disk_image_from_cddvd_iso_format": 67, "cord": [3, 9, 51, 75], "correct": 41, "cosmet": 40, "could": 85, "cours": [22, 34, 39, 73], "cover": 110, "covid": 82, "cpu": [12, 15, 16, 62, 67], "creat": [12, 13, 20, 32, 39, 48, 55, 63, 67, 71], "create_a_mesh_out_of_a_binary_fil": 48, "create_a_virtual_machine_vm_with_debian": 63, "create_recovery_partit": 67, "creation": [14, 71], "credenti": 78, "crf": 34, "criugm": 12, "csv": 32, "cuda": [35, 38], "curat": 24, "current": 39, "daili": 97, "data": [3, 12, 14, 17, 23, 24, 27, 28, 78, 79, 80, 92], "datalad": 59, "dataset": [24, 28, 55, 59], "dataset_descript": 24, "date": [32, 39], "de": 22, "debian": 63, "deep": [3, 33, 55, 75, 95, 110], "default": [39, 67], "deform": 42, "delet": [31, 54], "deriv": 24, "descript": 24, "design": 108, "desir": 67, "desk": 82, "develop": 94, "diagnosi": 9, "dialog": 67, "dialog_boxselect_option_with_tab": 67, "dialogu": 67, "diffus": [6, 44], "disabl": 67, "disable_notification_cent": 67, "discard": 39, "disk": [15, 67], "displai": [54, 67], "distil": 105, "distribut": [3, 54, 71], "divers_lien": 100, "django": 25, "dn": 31, "do": 10, "doc": 110, "dock": 67, "dock_in_2d": 67, "docker": [36, 54, 55], "docker_environ": 55, "dockerfil": 54, "docstr": 94, "doctor": [98, 109], "document": [10, 37, 78, 94], "doesn": 39, "domain": 3, "don": 85, "doubl": 67, "download": [31, 39, 59, 79, 80], "draft": 20, "drive": [67, 90], "driver": 38, "dropbox": [56, 67], "dual": 101, "duke": 26, "dure": 39, "dvd": 67, "dwi_mean": 67, "dyld_library_path": 71, "each": 15, "ectrim": 20, "edi": 29, "edit": 71, "editor": 31, "eduroam": [82, 85], "el": 105, "elig": 80, "elm": 12, "email": [31, 86], "emb": 20, "emerg": 98, "empti": [31, 67], "end": 98, "entiti": 24, "environ": [13, 55, 73], "epic": 94, "error": [18, 38, 67], "escap": 32, "ethic": [22, 76], "exam": 10, "exampl": [24, 41, 42, 70], "exceed": 67, "exist": 39, "expand": 67, "expect": 42, "expos": 55, "extens": [24, 31], "extern": 55, "extract": 31, "facil": 76, "famili": 98, "featur": 3, "fedora": 66, "feed": 101, "fellow": 93, "few": 3, "field": [34, 42], "figur": [72, 110], "file": [13, 31, 32, 39, 40, 42, 48, 54, 63, 67, 71], "fill": [79, 80], "film": 3, "filter": 41, "find": [31, 80, 98], "finder": 67, "first": [10, 39, 82], "fitzgerald": 15, "fix": [38, 39, 70, 99], "fix_cuda_driver_vers": 38, "fix_module_tensorflow_import_error": 38, "flight": 97, "folder": [8, 31, 62, 63, 67, 110], "forc": 54, "fork": 39, "form": [79, 80], "format": [67, 110], "framework": 33, "frameworkslibrari": 33, "freder": 101, "freesurf": 45, "from": [12, 20, 26, 28, 31, 39, 54, 67, 107], "fsl": [46, 66, 67], "fsley": [47, 67], "fslview": 67, "fundament": [6, 7], "gan": 3, "gaussian": 41, "ge": [15, 77], "geek": 30, "gener": [6, 32, 39, 67, 110], "generate_log_fil": 32, "genmitsu": 104, "gerber": 105, "get": [13, 28, 62, 78, 91], "git": [39, 40], "github": [39, 94], "give": 10, "given": 31, "global": [40, 67], "global_default_config": 67, "good": [17, 75], "googl": [67, 76, 90, 110], "gpg": 39, "gpu": [15, 17, 36], "gradient": [42, 78], "grame": [15, 84, 108], "grammar": 110, "graphic": 15, "group": [15, 31], "guest": 63, "gui": 26, "guid": [27, 65], "guidanc": 94, "h_140184mm_300mhz_quad_birdcage_coil": 78, "h_38108mm_300mhz_quad_birdcage_coil": 78, "habit": 17, "hardlink": 40, "hardwar": 17, "harvard": 29, "hat": 66, "hd": 78, "hd_gradient_coil": 78, "hd_gradient_coil1": 78, "hdd": 31, "heard": 85, "help": [28, 91], "hidden": 67, "high": 67, "histologi": [4, 75], "hl": 18, "host": 39, "how": [39, 58, 71, 108], "how_to_always_open_a_page_with_page_width_view": 58, "how_to_design_pcb_for_pcbwai": 108, "href": [31, 62, 63, 84], "i": [10, 85], "icm": [78, 107], "icon": 67, "id": [18, 20, 31, 32, 33, 34, 36, 37, 38, 40, 44, 47, 48, 51, 54, 55, 58, 62, 63, 67, 72, 73, 78, 84, 100, 108], "idea": 75, "idea3t": 15, "idea7t": 15, "ieee": 20, "ignor": 39, "imag": [3, 7, 22, 41, 54, 67, 75, 95], "implicit": 29, "import": [38, 63], "import_a_ova_fil": 63, "incl": 98, "inform": [3, 96], "informat": 95, "infrastructur": 92, "initi": 28, "injuri": 9, "input": 32, "insid": 39, "instal": [15, 35, 38, 39, 40, 42, 43, 45, 46, 47, 50, 54, 59, 62, 63, 70, 73], "install_fsley": 47, "install_guest_addit": 63, "install_run_linux_distribut": 54, "install_tensorflow": 38, "instrument": 22, "integr": 94, "intens": 41, "inter": 3, "interfac": 15, "intern": [75, 95], "internet": 31, "internship": [75, 100], "introduct": [47, 94], "isbi": 20, "isc": 20, "ismrm": 20, "iso": 67, "isol": 36, "isolating_gpus_without_dock": 36, "issu": [28, 70, 72, 94], "itk": [42, 48, 70, 71], "jacaranda": 12, "jekyl": 57, "job": [12, 13], "joplin": [15, 16], "journal": 110, "json": 24, "keep": 39, "kei": [31, 39], "keyboard": 67, "keynot": 67, "kill": [13, 31], "kit": 37, "lab": [0, 82, 99, 101, 103], "label": [6, 24, 94], "languag": [15, 22, 68], "latest": 39, "launch": 67, "learn": [3, 22, 33, 37, 55, 75, 95, 110], "lesag": 101, "lesion": 3, "let": 67, "letter": 110, "librari": [33, 70], "licens": 94, "life": 97, "line": [15, 28, 32], "linear": 3, "link": [31, 32, 71, 74, 100, 107], "linux": [15, 35, 54, 66, 84], "liom": 107, "list": [13, 15, 20, 28, 39, 54], "list_local_docker_imag": 54, "live": 97, "load": 67, "local": [15, 39, 54], "locat": 40, "lock": 67, "lock_screen": 67, "lock_screen_upon_sleep": 67, "log": [32, 67, 76], "logbook": 76, "login": 12, "logist": 82, "long": 17, "longitudin": 3, "look": 31, "loop": 32, "lost": 39, "low": 18, "m": 3, "mac": [67, 70], "machin": [22, 37, 61, 63, 84, 104], "maco": [62, 84, 86], "macosx": 67, "magnet": 105, "mail": 86, "mainten": 67, "make": [28, 67], "make_hidden_applications_icons_transpar": 67, "manag": 110, "mandatori": 94, "manual": [0, 41, 51, 63], "manual_method": 63, "manual_segmentation_of_the_spinal_cord": 51, "manufactur": [105, 108], "map": 82, "master": 109, "match": 42, "matlab": [67, 72], "matplotlib": 73, "mcgill": [22, 79], "md": 24, "mds_store": 67, "median": 41, "medic": [3, 22, 95, 98], "medicin": 98, "meet": 1, "memori": 62, "merg": 39, "mesh": 48, "messag": 39, "meta": 3, "method": 63, "metric": 42, "mhi": 78, "miccai": 20, "microsoft": [14, 58, 67], "mid": 17, "mila": 82, "miniconda": 66, "misc": [15, 32, 36, 67, 105], "misc_": 18, "miscellan": 99, "mixup": 3, "mni": 79, "mode": 39, "modix": 101, "modul": [3, 13, 38], "monitor": 17, "montreal": 97, "montr\u00e9al": 22, "mount": [15, 26, 66], "mr": 6, "mri": [3, 6, 7, 9, 15, 76, 80, 92, 95, 110], "msc": 109, "my": 85, "myelin": 75, "n3": 41, "n4": 41, "name": [24, 39], "net": 3, "network": 31, "neural": 3, "neuro": [27, 28], "neuroimag": [7, 73, 110], "neuropoli": [15, 106], "new": [27, 40, 71], "nibardo": 107, "nice": [67, 73], "nifti": 49, "niftiview": 84, "niftiviewerapp": 84, "node006": 15, "node007": 15, "non": [31, 41, 42, 71, 105], "normal": [41, 42], "notif": 67, "number": 31, "number_of_fil": 31, "nvidia": 55, "o": [65, 70], "octoprint": 102, "od": 3, "off": 28, "offic": [93, 101], "ohbm": 20, "old": 15, "onboard": 81, "one": 82, "onedr": 14, "ones": 39, "onli": 42, "onlin": [20, 34], "online_confer": 20, "ood": 3, "open": [28, 58, 67, 94], "openneuro": [50, 59], "oper": 78, "option": [67, 94], "oral": 10, "order": 82, "organ": [82, 110], "osirix": 51, "osx": [58, 70, 105], "other": [39, 84, 100], "out": [3, 48, 67, 79], "ova": 63, "overleaf": 110, "overview": [59, 85], "owner": 31, "packag": 73, "page": 58, "pai": 76, "paper": [29, 34, 67], "paperpil": [8, 110], "paramet": [31, 42], "parametr": 41, "pars": 32, "part": 105, "particip": [24, 76, 80], "partit": 67, "password": [15, 67], "pathophysiologi": 9, "pcb": [99, 108], "pcbwai": 108, "perman": 67, "permiss": [31, 67], "permit": 100, "peterson": 15, "phantom": [99, 107], "phase": 71, "phd": 109, "physic": [3, 95], "pi": 82, "pid": 31, "pipe": 99, "plan": 20, "platform": 110, "pleas": 82, "plugin": [47, 102], "point": 42, "poli": [15, 108], "polici": 24, "polymtl": [27, 28, 86], "polytechniqu": [15, 22, 82], "port": [39, 55, 67], "postdoc": 100, "postdoctor": [93, 109], "poster": [20, 99], "pr": 94, "practic": 96, "prepar": 70, "present": 10, "preview": 67, "previou": 39, "print": [67, 101], "printer": [18, 101], "prior": 3, "prisma": 80, "privat": [75, 98], "problem": 40, "procedur": [19, 78], "process": [7, 31, 41], "profil": 87, "program": [15, 22, 68, 75], "progress": 94, "project": [39, 71, 75, 94], "prompt": 67, "propos": 10, "protocol": 82, "prover": 104, "provis": 62, "pse": 42, "public": [15, 31, 75, 98], "pull": [28, 39, 94], "puls": [6, 75], "purchas": 99, "push": 39, "pycharm": 39, "python": [13, 73], "qc": 6, "quad": 78, "qualiti": 6, "quicklook": 67, "quota": 67, "ra": 89, "random": 34, "rapid": 17, "rater": 3, "raw": [24, 78, 80], "rbm": 37, "readm": 24, "rebas": 39, "reboot": [15, 67], "reboot_station_with_termin": 67, "recip": 107, "recommend": [44, 63, 94], "reconstruct": [78, 80], "recov": 39, "recoveri": [27, 67], "red": 66, "redirect": 54, "reduc": 63, "reduce_the_size_of_the_vm": 63, "refer": [14, 35, 38, 110], "refus": 39, "reimburs": [20, 99], "releas": 27, "remot": [15, 31, 39, 47, 54], "remov": [31, 39, 40, 54], "remove_docker_image_or_containers_force_delet": 54, "remove_files_from_tmp": 31, "renam": 31, "repair": 67, "repo": [28, 40], "repositori": [27, 28, 39], "request": [28, 39, 94], "requir": [22, 82], "research": [10, 89], "reset": [39, 40], "resourc": [3, 4, 11, 39, 72, 73], "restrict": [37, 42], "retriev": 15, "revert": 39, "review": [94, 110], "rf": [6, 22, 75, 99, 101, 103], "right": 67, "rm": 40, "rod": 99, "rollback": 39, "roman": 15, "room": [1, 82], "rosenberg": 15, "rsync": 31, "run": [47, 54, 62], "run_docker_imag": 54, "run_with_display_redirect": 54, "same": 67, "save": [54, 67], "save_a_docker_imag": 54, "scan": 76, "scanner": [76, 77, 78, 79, 80], "schedul": 15, "scholarship": 109, "sci": 37, "scientif": 110, "scp": 31, "screen": [31, 67, 79], "screenshot": 67, "screenshot_in_desired_format": 67, "script": [12, 13, 32], "search": [39, 54], "segment": [3, 9, 41, 51], "select": [39, 67], "sequenc": [6, 75, 94], "serial": 105, "server": [13, 15, 28, 67], "servic": [67, 74], "set": [42, 62, 67, 71], "set_the_expanded_print_dialogue_as_default": 67, "set_the_expanded_save_dialogue_as_default": 67, "setup": [28, 83, 85], "sftp": 15, "share": [14, 20, 63, 67], "shared_fold": 63, "shell": [31, 87], "shim": [6, 75, 105], "short": 17, "shortcut": [27, 58], "shot": 3, "show": 39, "sidecar": 24, "sigma": 42, "simul": [44, 75], "size": [31, 63], "sketchup": 60, "slack": 88, "sleep": 67, "slow": 17, "small": 101, "smooth": [41, 42], "snap": 48, "softwar": [6, 15, 17, 22, 39, 41, 52, 67, 74, 94], "solut": 67, "sourc": 85, "source_filenam": 24, "sourcetre": 39, "span": [0, 1, 2, 10, 11, 12, 13, 14, 15, 18, 20, 21, 22, 23, 29, 30, 75, 76, 81, 84, 85, 86, 87, 88, 96, 97, 98, 99, 100, 103, 109, 110], "specif": [39, 67, 77, 78, 94], "spectroscopi": 6, "spin": 6, "spinal": [3, 9, 51, 75], "spine": 105, "ssh": [15, 17, 31, 39, 62, 64], "standard": 78, "start": [10, 13, 62, 91], "startup": [62, 66], "statement": 32, "station": [15, 26, 31, 67, 78], "statist": 22, "statu": 40, "stderr": 31, "stdout": 31, "stdoutstderr": 31, "step": 10, "sticker": 20, "storag": 17, "straighten": 51, "straighten_spinal_cord": 51, "string": 32, "structur": [10, 24], "stuck": 67, "student": 95, "style": 94, "subject": 24, "submit": [10, 39, 94], "suffix": 24, "suppli": 99, "switch": 39, "synchron": 31, "synthet": 3, "t": [39, 85], "tab": 67, "tag": 39, "talk": [20, 67], "tar": 31, "technic": [77, 78], "technician": 101, "tele": 98, "tensorboard": 17, "tensorflow": 38, "term": 17, "termin": [26, 64, 67], "terminologi": 54, "terra": 79, "test": [29, 94], "text": 31, "textmat": 67, "thi": [10, 85], "thin": 40, "time": [39, 82], "tip": [13, 30, 73, 84, 110], "titl": 94, "tmp": 31, "togeth": 82, "toner": 18, "tool": [37, 42, 52, 85], "toolbox": [72, 75], "toolchain": 71, "track": 39, "train": 17, "transfer": [12, 13], "transform": 42, "translat": 42, "transpar": 67, "trash": 67, "travel": [20, 109], "trick": [13, 73], "tristano": 15, "troubleshoot": [18, 27, 39, 40, 51, 67, 71], "tsv": 24, "tube": 99, "tunnel": 17, "tutori": [32, 39, 73], "two": 39, "u": 3, "ubuntu": 63, "ubuntu_1404": 63, "uncertainti": 3, "under": 84, "unf": [80, 107], "uniform": 41, "uninstal": 50, "univers": [20, 22], "universit\u00e9": 22, "up": 39, "updat": 39, "upload": 39, "upon": 67, "us": [12, 24, 39, 54, 58, 63, 67, 70, 71, 73, 74, 85, 107], "usag": [39, 51, 59], "usb": 105, "useful_shortcuts_for_osx": 58, "user": [31, 71], "using_guest_additions_recommend": 63, "util": 67, "v2": 101, "vagrant": 62, "vagrantfil": 62, "variabl": 13, "variou": [20, 52], "vectori": 110, "veri": [17, 101], "version": [38, 40, 94], "via": [31, 67], "view": 58, "viewer": 105, "vim": 31, "virtual": [61, 63, 73], "virtualbox": [25, 63], "virtualenvwrapp": 84, "visa": 100, "vision": 22, "visual": [42, 73], "vm": 63, "vnc": 15, "vnmrj": [15, 78], "volum": 55, "vpn": 15, "vtk": [70, 71], "walk": 98, "want": [67, 85], "warp": 42, "water": 105, "websit": 74, "week": 98, "wet": 99, "what": [10, 85], "when": [10, 67], "where": 10, "which": 39, "white": 29, "width": 58, "wifi": [28, 82, 85], "wiki": 78, "wiki_7t_scanner_icm": 78, "window": 15, "wire": 28, "wise": 3, "without": 36, "word": [58, 67], "work": [39, 94, 100], "write": [28, 110], "written": 10, "x": 70, "xcode": 71, "xquartz": 64, "yosemit": 72, "yosemite_issu": 72, "you": 39, "your": 39, "youtub": 19, "zip": 31}}) \ No newline at end of file diff --git a/writing-articles.html b/writing-articles.html index cd9a551d..da628148 100644 --- a/writing-articles.html +++ b/writing-articles.html @@ -227,7 +227,7 @@
  • 💾 Data