Loading .gitignore 0 → 100644 +4 −0 Original line number Diff line number Diff line *.pyd *.pyc /build/ /dist/ README.md +18 −10 Original line number Diff line number Diff line sas_temper **sas_temper** SAS data analysis package that uses simulated annealing to fit data using the sasmodels package. The program automatically performs multiple runs of the fitting to check the reproducibility of the result. Loading @@ -7,13 +7,7 @@ The program is written in python3. The code began as sa_fitter, which was developed as part of ORNL LDRD project 8235. pip install --upgrade git+https://code.ornl.gov/wt3/sas_temper.git or, if you want a specific branch pip install --upgrade git+https://code.ornl.gov/wt3/sas_temper.git@<branch_name> **System Requirements** If your system does not presently have python 3 and the required libraries, you can create a specific environment using conda and the sas_temper_env.yaml file here. Loading @@ -27,3 +21,17 @@ To activate the environment so you can run sas_temper, type the following. conda activate sas_temper_env ``` **Installation** pip install --upgrade git+https://code.ornl.gov/wt3/sas_temper.git or, if you want a specific branch pip install --upgrade git+https://code.ornl.gov/wt3/sas_temper.git@<branch_name> **Usage** An example is available in the `tests` directory: ``` cd tests sas_temper test_sphere_nz.yaml ``` sas_temper/__main__.py→scripts/sas_temper +7 −6 Original line number Diff line number Diff line #!/usr/bin/env python r""" sas_temper Loading setup.py +6 −5 Original line number Diff line number Diff line Loading @@ -24,6 +24,7 @@ setup( version='0.1', description='SAS data analysis using simulated annealing and reproducibility characterization. Uses sasmodels package', packages=['sas_temper'], scripts=['scripts/sas_temper'], instal_requires=required_packages(), dependency_link=external_dependency_links(), package_data={'': [REQUIREMENTS_DOT_TXT]} Loading Loading
.gitignore 0 → 100644 +4 −0 Original line number Diff line number Diff line *.pyd *.pyc /build/ /dist/
README.md +18 −10 Original line number Diff line number Diff line sas_temper **sas_temper** SAS data analysis package that uses simulated annealing to fit data using the sasmodels package. The program automatically performs multiple runs of the fitting to check the reproducibility of the result. Loading @@ -7,13 +7,7 @@ The program is written in python3. The code began as sa_fitter, which was developed as part of ORNL LDRD project 8235. pip install --upgrade git+https://code.ornl.gov/wt3/sas_temper.git or, if you want a specific branch pip install --upgrade git+https://code.ornl.gov/wt3/sas_temper.git@<branch_name> **System Requirements** If your system does not presently have python 3 and the required libraries, you can create a specific environment using conda and the sas_temper_env.yaml file here. Loading @@ -27,3 +21,17 @@ To activate the environment so you can run sas_temper, type the following. conda activate sas_temper_env ``` **Installation** pip install --upgrade git+https://code.ornl.gov/wt3/sas_temper.git or, if you want a specific branch pip install --upgrade git+https://code.ornl.gov/wt3/sas_temper.git@<branch_name> **Usage** An example is available in the `tests` directory: ``` cd tests sas_temper test_sphere_nz.yaml ```
sas_temper/__main__.py→scripts/sas_temper +7 −6 Original line number Diff line number Diff line #!/usr/bin/env python r""" sas_temper Loading
setup.py +6 −5 Original line number Diff line number Diff line Loading @@ -24,6 +24,7 @@ setup( version='0.1', description='SAS data analysis using simulated annealing and reproducibility characterization. Uses sasmodels package', packages=['sas_temper'], scripts=['scripts/sas_temper'], instal_requires=required_packages(), dependency_link=external_dependency_links(), package_data={'': [REQUIREMENTS_DOT_TXT]} Loading