Skip to content

Commit

Permalink
Merge pull request #9 from ZhixuNi/master
Browse files Browse the repository at this point in the history
Improve export support to BioPAN with CLI tool with --column option
  • Loading branch information
ZhixuNi authored Jul 31, 2020
2 parents 664985e + 08dfb68 commit 0ab9849
Show file tree
Hide file tree
Showing 14 changed files with 985 additions and 123 deletions.
42 changes: 42 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
# Description

Please include a summary of the change and which issue is fixed.

List any new dependencies that are required for this change.

Fixes # (issue)

## Type of change

Please delete options that are not relevant.

- [ ] Bug fix (non-breaking change which fixes an issue)
- [ ] New feature (non-breaking change which adds functionality)
- [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected)
- [ ] This change requires a documentation update

# Tested new features / Examples of fixed issues

Please describe the tests/features that you ran to verify your changes.
Provide some examples if it is possible.

- Test/Example 1: ...
- Test/Example 2: ...

**Test Configuration**:

- Hardware: e.g. Intel / AMD Quad core + 8GB RAM
- OS: e.g. Windows 10 64 bit, Ubuntu Linux 18.04 64 bit .etc
- Python version: e.g. Python 3.7.7
- Conda Python distribution: Yes/No
- Editor: e.g. PyCharm, VS Code .etc

# Checklist:

- [ ] My code follows the style guidelines of this project
- [ ] I have performed a self-review of my own code
- [ ] I have commented my code, particularly in hard-to-understand areas
- [ ] I have made corresponding changes to the documentation
- [ ] My changes generate no new warnings
- [ ] I have added tests that prove my fix is effective or that my feature works
- [ ] New and existing unit tests pass locally with my changes
17 changes: 7 additions & 10 deletions .github/workflows/pythonapp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,16 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: [3.7]

python-version: [3.7, 3.8]

name: Test Python ${{ matrix.python-version }}
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.7
uses: actions/setup-python@v1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: 3.7
python-version: ${{ matrix.python-version }}
architecture: x64
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand All @@ -30,8 +32,3 @@ jobs:
run: |
pip install codecov pytest pytest-cov
pytest --cov=./
- name: Pack with pyinstaller
run: |
pip install pyinstaller
pyinstaller cli_lynx.spec
pyinstaller LipidLynxX.spec
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,10 @@ If you really want to have an early access to the exe version, please contact us
### Additional notice to developers

Since the code is still changing rapidly, the definitions of API and documentations in the source code may not be updated accordingly.
We kindly ask, if you have any plans to use LipidLynxX API contact us first, or follow this repository to get timely notifications when new changes are introduced.
We kindly ask if you have any plans to use LipidLynxX API contact us first, or follow this repository to get timely notifications when new changes are introduced.

New features of LipidLynxX is generally developed using repository [https://github.com/ZhixuNi/LipidLynxX](https://github.com/ZhixuNi/LipidLynxX).


### Key Features

Expand Down
Loading

0 comments on commit 0ab9849

Please sign in to comment.