Skip to content

Commit 852c615

Browse files
add citation tag
add citation tag to code contributions
1 parent d5ffe8a commit 852c615

21 files changed

Lines changed: 39 additions & 7 deletions

README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,14 @@ The **test** folder contains the test files corresponding to the contributed cod
3737

3838
The **utils** folder contains various helpful tools.
3939

40+
## Citing
41+
If this repository was usefull, please cite our [upcoming MRM paper](https://eur04.safelinks.protection.outlook.com/?url=https%3A%2F%2Furldefense.com%2Fv3%2F__https%3A%2Fdrive.google.com%2Fdrive%2Fu%2F0%2Ffolders%2F1Yh7cHuBIDQ0fmlWum9banDFgCc6uf3XH__%3B!!K-Hz7m0Vt54!gNxtgp_trP5qT7uJBD7zz5-Wwi7y83_56-qBO2I2Zd9ATILK5_BWzAKmxSah9-y8N8Wsgy67pn1LMeCd9xfaQGM%24&data=05%7C02%7Co.j.gurney-champion%40amsterdamumc.nl%7Cceeee39962fc4098e61708de2e90699a%7C68dfab1a11bb4cc6beb528d756984fb6%7C0%7C0%7C638999394967163935%7CUnknown%7CTWFpbGZsb3d8eyJFbXB0eU1hcGkiOnRydWUsIlYiOiIwLjAuMDAwMCIsIlAiOiJXaW4zMiIsIkFOIjoiTWFpbCIsIldUIjoyfQ%3D%3D%7C0%7C%7C%7C&sdata=mu6wjTAM1DlCgZjfM3mkKZEuSm1vNiteCxdh5kV29WY%3D&reserved=0). The repository contains a lot of code from other sites. Please cite the appropriate papers depending on the code you used. The citations can be found with the "cite" function from OsipiBase:
42+
```ruby
43+
fit=osipibase(algorithm="IAR_LU_biexp")
44+
fit.cite
45+
```
46+
DOIs can also be found in [code_contributions_record](doc/code_contributions_record.csv).
47+
4048
## View Testing Reports
4149
[![Unit tests](https://github.com/OSIPI/TF2.4_IVIM-MRI_CodeCollection/actions/workflows/unit_test.yml/badge.svg?branch=main)](https://github.com/OSIPI/TF2.4_IVIM-MRI_CodeCollection/actions/workflows/unit_test.yml)
4250
[![Algorithm Analysis](https://github.com/OSIPI/TF2.4_IVIM-MRI_CodeCollection/actions/workflows/analysis.yml/badge.svg?branch=main)](https://github.com/OSIPI/TF2.4_IVIM-MRI_CodeCollection/actions/workflows/analysis.yml)

src/standardized/ASD_MemorialSloanKettering_QAMPER_IVIM.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ class ASD_MemorialSloanKettering_QAMPER_IVIM(OsipiBase):
1717
id_algorithm_type = "Bi-exponential fit"
1818
id_return_parameters = "f, D*, D, S0"
1919
id_units = "seconds per milli metre squared or milliseconds per micro metre squared"
20-
20+
id_ref = "https://doi.org/10.3390/tomography9060161"
2121
# Algorithm requirements
2222
required_bvalues = 4
2323
required_thresholds = [0,

src/standardized/IAR_LU_modified_mix.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@ class IAR_LU_modified_mix(OsipiBase):
1818
id_algorithm_type = "Bi-exponential fit"
1919
id_return_parameters = "f, D*, D"
2020
id_units = "seconds per milli metre squared or milliseconds per micro metre squared"
21-
21+
id_ref = "https://doi.org/10.1038/srep38927"
22+
2223
# Algorithm requirements
2324
required_bvalues = 4
2425
required_thresholds = [0,0] # Interval from "at least" to "at most", in case submissions allow a custom number of thresholds

src/standardized/IAR_LU_modified_topopro.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@ class IAR_LU_modified_topopro(OsipiBase):
1818
id_algorithm_type = "Bi-exponential fit"
1919
id_return_parameters = "f, D*, D"
2020
id_units = "seconds per milli metre squared or milliseconds per micro metre squared"
21-
21+
id_ref = "https://doi.org/10.3389/fnins.2021.779025"
22+
2223
# Algorithm requirements
2324
required_bvalues = 4
2425
required_thresholds = [0,0] # Interval from "at least" to "at most", in case submissions allow a custom number of thresholds

src/standardized/IVIM_NEToptim.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ class IVIM_NEToptim(OsipiBase):
1919
id_algorithm_type = "Deep learnt bi-exponential fit"
2020
id_return_parameters = "f, D*, D, S0"
2121
id_units = "seconds per milli metre squared or milliseconds per micro metre squared"
22-
22+
id_ref = "https://doi.org/10.1002/mrm.28852"
2323
# Algorithm requirements
2424
required_bvalues = 4
2525
required_thresholds = [0,

src/standardized/OGC_AmsterdamUMC_Bayesian_biexp.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ class OGC_AmsterdamUMC_Bayesian_biexp(OsipiBase):
1616
id_algorithm_type = "Bi-exponential fit"
1717
id_return_parameters = "f, D*, D, S0"
1818
id_units = "seconds per milli metre squared or milliseconds per micro metre squared"
19-
19+
id_ref = "reference method in https://doi.org/10.1002/mrm.28852"
2020
# Algorithm requirements
2121
required_bvalues = 4
2222
required_thresholds = [0,

src/standardized/OGC_AmsterdamUMC_biexp.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ class OGC_AmsterdamUMC_biexp(OsipiBase):
1616
id_algorithm_type = "Bi-exponential fit"
1717
id_return_parameters = "f, D*, D, S0"
1818
id_units = "seconds per milli metre squared or milliseconds per micro metre squared"
19+
id_ref = "reference method in https://doi.org/10.1002/mrm.28852"
1920

2021
# Algorithm requirements
2122
required_bvalues = 4

src/standardized/OJ_GU_bayesMATLAB.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ class OJ_GU_bayesMATLAB(OsipiBase):
1717
id_algorithm_type = "Bi-exponential fit"
1818
id_return_parameters = "f, D*, D, S0"
1919
id_units = "seconds per milli metre squared or milliseconds per micro metre squared"
20+
id_ref = "https://doi.org/10.1007/s10334-018-0697-5"
2021

2122
# Algorithm requirements
2223
required_bvalues = 4

src/standardized/OJ_GU_seg.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@ class OJ_GU_seg(OsipiBase):
1616
id_algorithm_type = "Segmented bi-exponential fit"
1717
id_return_parameters = "f, D*, D"
1818
id_units = "mm2/s"
19-
19+
id_ref = "https://doi.org/10.1002/mrm.26783"
20+
2021
# Algorithm requirements
2122
required_bvalues = 4
2223
required_thresholds = [0,0] # Interval from "at least" to "at most", in case submissions allow a custom number of thresholds

src/standardized/OJ_GU_segMATLAB.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ class OJ_GU_segMATLAB(OsipiBase):
1717
id_algorithm_type = "Bi-exponential fit"
1818
id_return_parameters = "f, D*, D, S0"
1919
id_units = "seconds per milli metre squared or milliseconds per micro metre squared"
20+
id_ref = "https://doi.org/10.1007/s10334-018-0697-5"
2021

2122
# Algorithm requirements
2223
required_bvalues = 4

0 commit comments

Comments
 (0)