Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
d963642
Initial package commit
jrlegrand Sep 27, 2024
9ead089
Restructure folders
jrlegrand Sep 27, 2024
6817b00
Reorganize for main.py
jrlegrand Sep 27, 2024
fddfa6f
Update main.py arguments.
Kingstead Sep 28, 2024
77cedb5
Update main.py with csv read/write functionality.
Kingstead Sep 28, 2024
8bd8025
Update main.py with better file error handling, remove comments, stan…
Kingstead Sep 28, 2024
577b5c9
Update main.py, remove pass statement.
Kingstead Sep 28, 2024
f96a113
Implementing parse_sig_csv
jrlegrand Sep 29, 2024
6917f33
Create README.md
jrlegrand Sep 29, 2024
1e2f902
Create README.md
jrlegrand Sep 29, 2024
896ce34
Update gitignore for CSVs
jrlegrand Sep 29, 2024
e2cb78c
Create input.csv
jrlegrand Sep 29, 2024
48ee092
Merge pull request #2 from coderxio/parserx-package
jrlegrand Sep 29, 2024
1fa53d6
Update README.md
jrlegrand Sep 29, 2024
b747c1f
Update README.md
jrlegrand Sep 29, 2024
781d0da
Simplify command line interface
Kingstead Sep 29, 2024
5a555f4
Rename main.py to parserx.py
jrlegrand Sep 30, 2024
3646371
Merge pull request #6 from coderxio/parserx-cli
jrlegrand Sep 30, 2024
da936cf
Update README.md
jrlegrand Sep 30, 2024
5b78067
Update README.md
jrlegrand Sep 30, 2024
c5d9f4f
Update README.md
jrlegrand Sep 30, 2024
f65dbb1
Update README.md
jrlegrand Sep 30, 2024
77c7483
Pretty Printing and inference
brprigge Oct 4, 2024
d4fabb4
Add support for "aaa" and "pea-sized"
brprigge Oct 4, 2024
46dcf3b
Remove unused import.
brprigge Oct 4, 2024
8015c37
Add infer on RxCUI
brprigge Oct 4, 2024
ed76346
Fix errant elif
brprigge Oct 9, 2024
c66ce67
form -> dose_unit
brprigge Oct 9, 2024
1a95983
Merge pull request #7 from brian-prigge/pretty-print-plus-infer
jrlegrand Oct 9, 2024
7e43e5e
Merge pull request #8 from brian-prigge/dose-unit-plus-topicals
jrlegrand Oct 9, 2024
f4c2dae
Account for singular gum
jrlegrand Oct 9, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
128 changes: 4 additions & 124 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,132 +1,12 @@
# ParseRx specific
csv/
csv/*.csv
csv/output/*.csv

# Byte-compiled / optimized / DLL files
# byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class

# C extensions
*.so

# Distribution / packaging
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
pip-wheel-metadata/
share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST

# PyInstaller
# Usually these files are written by a python script from a template
# before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
*.spec

# Installer logs
pip-log.txt
pip-delete-this-directory.txt

# Unit test / coverage reports
htmlcov/
.tox/
.nox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
*.py,cover
.hypothesis/
.pytest_cache/

# Translations
*.mo
*.pot

# Django stuff:
*.log
local_settings.py
db.sqlite3
db.sqlite3-journal

# Flask stuff:
instance/
.webassets-cache

# Scrapy stuff:
.scrapy

# Sphinx documentation
docs/_build/

# PyBuilder
target/

# Jupyter Notebook
.ipynb_checkpoints

# IPython
profile_default/
ipython_config.py

# pyenv
.python-version

# pipenv
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
# However, in case of collaboration, if having platform-specific dependencies or dependencies
# having no cross-platform support, pipenv may install dependencies that don't work, or not
# install all needed dependencies.
#Pipfile.lock

# PEP 582; used by e.g. github.com/David-OConnor/pyflow
__pypackages__/

# Celery stuff
celerybeat-schedule
celerybeat.pid

# SageMath parsed files
*.sage.py

# Environments
# environments
.env
.venv
env/
venv/
ENV/
env.bak/
venv.bak/

# Spyder project settings
.spyderproject
.spyproject

# Rope project settings
.ropeproject

# mkdocs documentation
/site

# mypy
.mypy_cache/
.dmypy.json
dmypy.json

# Pyre type checker
.pyre/
Loading