Skip to content

Commit

Permalink
Merge branch 'master' of github.com:ReproNim/containers
Browse files Browse the repository at this point in the history
* 'master' of github.com:ReproNim/containers:
  Fixup scripts/list-container which I added without shellchecking it first
  Remove --no-datalad-get in walkthrough
  • Loading branch information
yarikoptic committed Jan 21, 2025
2 parents 69b2a1e + f8ecf9d commit 8abac23
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -265,6 +265,15 @@ specified in the `.gitmodules`. By freezing into the top-level dataset
instead, authors do not need to host a modified version of
`///reporonim/containers`.
### Fixup datalad config
The version of mriqc we are using does not have an option `--no-datalad-get` which is hardcoded
into mriqc config, so we should remove it.
```bash
datalad run -m "Remove ad-hoc option for mriqc for older frozen version" sed -i -e 's, --no-datalad-get,,g' .datalad/config
```
### Running the Containers
When we run the bids-mriqc container, it will need a working directory
Expand Down
2 changes: 1 addition & 1 deletion scripts/list-container
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ else
output=${container%.*}.filelist.gz
fi

singularity exec "$container" find / -xdev 2>/dev/null | gzip -9 > $output
singularity exec "$container" find / -xdev 2>/dev/null | gzip -9 > "$output"
echo "I: listed $container into $output"

0 comments on commit 8abac23

Please sign in to comment.