Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 0 additions & 40 deletions .github/workflows/convert_csv.yml

This file was deleted.

6 changes: 3 additions & 3 deletions .github/workflows/jupyterbook.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,17 +27,17 @@ jobs:
pip install wheel pytest
pip install -r notebooks/requirements.txt
pip install .

- name: Test with pytest
run: |
pytest .

# Build the book
- name: Convert contributors csv to md
run: |
python doc/convert_to_md.py
- name: Build the book
run: |
jupyter-book build notebooks/
touch notebooks/_build/html/.nojekyll

- name: Re-organize files
run: |
mkdir out
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@



- [code database with links to source code](doc/code_contributions_record.md)
- [test-results website](http://osipi.org/DCE-DSC-MRI_TestResults)
- [code database with links to source code](https://osipi.org/DCE-DSC-MRI_TestResults/overview_of_code_collection.html)
- [test-results website](https://osipi.org/DCE-DSC-MRI_TestResults)

The ISMRM Open Science Initiative for Perfusion Imaging ([OSIPI](https://www.osipi.org/)) aims to promote the sharing of perfusion imaging software in order to reduce duplication, improve reproducibility and speed up translation. This **DCE-DSC-MRI_CodeCollection** code library is maintained by [Taskforce 2.3](https://www.osipi.org/task-force-2-3/) of OSIPI and aims to collect, test and share open-source perfusion imaging code for use in research and software development. Code contributions can include modules covering one or more steps within the image processing pipeline, for example T1 mapping, converting signal to concentration and pharmacokinetic modelling. A further aim of OSIPI is to develop a fully tested and harmonised code library, drawing on the contributions within this repository.

Expand Down Expand Up @@ -43,4 +43,4 @@ The results of the validated code are published on the [test-results website](ht



This is an ongoing project, we welcome new contributions. If you would like to contribute to the OSIPI initiative please email the contacts listed on our [website](https://www.osipi.org/task-force-2-3/).
This is an ongoing project, we welcome new contributions. If you would like to contribute to the OSIPI initiative please email the contacts listed on our [website](https://www.osipi.org/task-force-2-3/).
89 changes: 0 additions & 89 deletions doc/code_contributions_record.md

This file was deleted.

6 changes: 4 additions & 2 deletions doc/convert_to_md.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
import pandas as pd

df = pd.read_csv('doc/code_contributions_record.csv')
with open('doc/code_contributions_record.md', 'w') as md:
df.to_markdown(buf=md, index=False)
md = df.to_markdown(index=False).replace("(../", "(https://github.com/OSIPI/DCE-DSC-MRI_CodeCollection/tree/develop/")
with open('notebooks/overview_of_code_collection.md', 'w') as f:
f.write("# Overview of code collection\n\n")
f.write(md)
2 changes: 1 addition & 1 deletion notebooks/_toc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
format: jb-article
root: intro.md
sections:
- file: contributors.ipynb
- file: overview_of_code_collection.md
- file: DCE.md
sections:
- file: T1mapping.md
Expand Down
Loading