https://github.com/crescnet/iss-ah-predictor
Science Score: 23.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
○CITATION.cff file
-
○codemeta.json file
-
○.zenodo.json file
-
✓DOI references
Found 4 DOI reference(s) in README -
○Academic publication links
-
✓Committers with academic emails
1 of 2 committers (50.0%) from academic institutions -
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (9.1%) to scientific vocabulary
Repository
Basic Info
- Host: GitHub
- Owner: CrescNet
- License: mit
- Language: Perl
- Default Branch: master
- Size: 24.4 KB
Statistics
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
- Releases: 0
Metadata Files
README.md
iss-ah-predictor
Blum et al. [1] developed a set of algorithms for the prediction of adult height (AH) in patients with idiopathic short stature (ISS), based on a German-Dutch cohort. The iss-ah-predictor is a convenient Perl implementation of these algorithms.
Depending of the amount of available patient properties, a specific set of parameters is used to calculate AH. The following properties are used in the algorithms:
| property | unit | LOINC code | hash key for perl functions | | -------------------------------------- | ------------ | -------------------------------------| -------------------------- | | chronological age | years | 30525-0 | age | | body height at baseline | cm | 3137-7 | bodyheight | | Tanner target height [2] | cm | | targetheight | | mother height | cm | 83846-6 | motherheight | | father height | cm | 83845-8 | fatherheight | | bone age | years | 85151-9 | boneage | | birth weight | kg | 8339-4 | birthweight | | sex | male, female | 46098-0 | sex |
Installation
sh
cpan Iss::Ah::Predictor
After installing, you can find documentation for this module with the perldoc command.
sh
perldoc Iss::Ah::Predictor
You can also look for information at:
Search CPAN
http://search.cpan.org/dist/iss-ah-predictor/
Build from Source
sh
perl Makefile.PL
make
make test
make install
Usage
Just call ISS::AH::Predictor::predict(...) and provide property values from the table above. The function will pick an appropriate parameter set and will calculate the adult height.
perl
my $prediction = ISS::AH::Predictor::predict(
age => 12,
body_height => 130,
father_height => 180,
bone_age => 12, # will be converted with property age to bone_age_per_age
sex => 'male', # 'male' or 'female'
); # => adult height prediction: 164.6488 cm
You can also provide custom module parameters via hash key "models":
perl
my $prediction = ISS::AH::Predictor::predict(
age => 12,
body_height => 130,
father_height => 180,
bone_age => 12,
sex => 'male',
models => [
[ 63.3339, -2.9595, 0.7256, 0.3173, undef, undef, -13.0399, 1.2695, -6.2213 ], # parameters of model 1
[ 62.1795, -2.9892, 0.7328, 0.3442, undef, undef, -12.6821, undef, -6.3021 ], # parameters of model 2
],
);
Models must be provided as follows:
Each model parameter set is enclosed in an arrayref. The index of the parameter in this arrayref determines for which property the parameter is used.
The order is defined by the constant ISS::AH::Predictor::PARAMETER_NAMES:
perl
use constant PARAMETER_NAMES => {
0 => 'intercept',
1 => 'age',
2 => 'body_height',
3 => 'target_height',
4 => 'mother_height',
5 => 'father_height',
6 => 'bone_age_per_age',
7 => 'birth_weight',
8 => 'sex',
};
References
[1] Blum WF, Ranke MB, Keller E, Keller A, Barth S, de Bruin C, Wudy SA, Wit JM. A Novel Method for Adult Height Prediction in Children With Idiopathic Short Stature Derived From a German-Dutch Cohort. Journal of the Endocrine Society, Volume 6, Issue 7, July 2022, bvac074. https://doi.org/10.1210/jendso/bvac074
[2] Tanner JM, Goldstein H, Whitehouse RH. Standards for Children's Height at Ages 2-9 Years Allowing for Height of Parents. Archives of Disease in Childhood, 1970, 45:755-762. https://doi.org/10.1136/adc.45.244.755
License and Copyright
Copyright (C) 2017-2022 CrescNet, Leipzig University
This program is released under the following license: MIT
Owner
- Name: Growth Network CrescNet
- Login: CrescNet
- Kind: organization
- Email: info@crescnet.org
- Location: Leipzig, Germany
- Website: crescnet.org
- Repositories: 4
- Profile: https://github.com/CrescNet
CrescNet is a project at the Leipzig University.
GitHub Events
Total
Last Year
Committers
Last synced: over 3 years ago
All Time
- Total Commits: 16
- Total Committers: 2
- Avg Commits per committer: 8.0
- Development Distribution Score (DDS): 0.063
Top Committers
| Name | Commits | |
|---|---|---|
| Christoph Beger | c****r@m****e | 15 |
| Christoph Beger | C****B@u****m | 1 |
Committer Domains (Top 20 + Academic)
Issues and Pull Requests
Last synced: almost 3 years ago
All Time
- Total issues: 0
- Total pull requests: 1
- Average time to close issues: N/A
- Average time to close pull requests: 7 minutes
- Total issue authors: 0
- Total pull request authors: 1
- Average comments per issue: 0
- Average comments per pull request: 0.0
- Merged pull requests: 1
- Bot issues: 0
- Bot pull requests: 0
Past Year
- Issues: 0
- Pull requests: 0
- Average time to close issues: N/A
- Average time to close pull requests: N/A
- Issue authors: 0
- Pull request authors: 0
- Average comments per issue: 0
- Average comments per pull request: 0
- Merged pull requests: 0
- Bot issues: 0
- Bot pull requests: 0
Top Authors
Issue Authors
Pull Request Authors
- ChristophB (1)
Top Labels
Issue Labels
Pull Request Labels
Packages
- Total packages: 1
- Total downloads: unknown
- Total dependent packages: 0
- Total dependent repositories: 0
- Total versions: 1
- Total maintainers: 1
metacpan.org: Iss-Ah-Predictor
ISS AH Predictor
- License: mit
-
Latest release: v0.1.0
published almost 4 years ago