-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #84 from pepkit/dev
v0.4.0
- Loading branch information
Showing
137 changed files
with
1,436 additions
and
1,209 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
lint: | ||
# black should be last in the list, as it lint the code. Tests can fail if order will be different | ||
flake8 && isort . && black . | ||
|
||
run-coverage: | ||
coverage run -m pytest | ||
|
||
html-report: | ||
coverage html | ||
|
||
open-coverage: | ||
cd htmlcov && google-chrome index.html | ||
|
||
coverage: run-coverage html-report open-coverage |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,15 @@ | ||
# pepdbagent | ||
|
||
pepdbagent is a python library and toolkit that gives a user user-friendly | ||
`pepdbagent` is a Python library and toolkit that gives a user-friendly | ||
interface to connect, upload, update and retrieve information from pep-db. | ||
|
||
**pep-db** is and postgres database created for storing [PEPs](http://pep.databio.org/en/latest/). | ||
It is a backend database for PEPhub. database enables storing huge projects and provides fast speed of retrieving them. | ||
**pep-db** is a postgres database created for storing [PEPs](http://pep.databio.org/en/latest/). | ||
It is a backend database for PEPhub. | ||
|
||
Before using pepdbagent, you should install or have access to pep-db. | ||
Before using pepdbagent, you should install or have access to a pep-db instance. | ||
|
||
To install pep-db you can use this tutorial: | ||
To run a pep-db instance, you can use this tutorial: | ||
- [pep-db installation](./docs/db_tutorial.md) | ||
|
||
|
||
pepdbagent tutorial is here: | ||
Then, follow the `pepdbagent` tutorial here: | ||
- [pedbagent](./docs/README.md) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
__version__ = "0.3.0" | ||
__version__ = "0.4.0" |
Oops, something went wrong.