Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
pistack committed Dec 20, 2022
2 parents 588243c + bd3bf67 commit 033fbc8
Show file tree
Hide file tree
Showing 27 changed files with 2,658 additions and 24 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- name: Build package
run: python -m build
- name: Publish package
uses: pypa/gh-action-pypi-publish@37f50c210e3d2f9450da2cd423303d6a14a6e29f
uses: pypa/gh-action-pypi-publish@c7f29f7adef1a245bd91520e94867e5c6eedddcc
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}
15 changes: 15 additions & 0 deletions bin/fit_tscan_gui.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# pylint: disable = missing-module-docstring, wrong-import-position
# fit tscan gui py
# Wrapper script for fit_tscan_gui()
# Date: 2022. 12. 20.
# Author: pistack
# Email: pistack@yonsei.ac.kr

import os
import sys
path = os.path.dirname(os.path.realpath(__file__))
sys.path.append(path+"/../src/")
from TRXASprefitpack.tools._fit_tscan_gui import fit_tscan_gui

if __name__ == '__main__':
fit_tscan_gui()
2 changes: 1 addition & 1 deletion docs/source/Fit_Transient_Exp.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Fitting with time delay scan
# Fitting with time delay scan -Decay-
## Objective
1. Fitting with exponential decay model
2. Save and Load fitting result
Expand Down
Loading

0 comments on commit 033fbc8

Please sign in to comment.