-
Notifications
You must be signed in to change notification settings - Fork 4
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 #43 from sanjaynagi/change-name-anoprimer
Change package name to AnoPrimer
- Loading branch information
Showing
30 changed files
with
239 additions
and
247 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
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,31 @@ | ||
name: release | ||
on: | ||
push: | ||
tags: | ||
- 'v*.*.*' | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout source | ||
uses: actions/checkout@v3 | ||
|
||
- name: Install poetry | ||
run: pipx install poetry==1.7.1 | ||
|
||
- name: Setup python | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: '3.10' | ||
cache: 'poetry' | ||
|
||
- name: Configure poetry | ||
run: | | ||
poetry self add "poetry-dynamic-versioning[plugin]" | ||
poetry config pypi-token.pypi ${{ secrets.PYPI_API_TOKEN }} | ||
- name: Build package | ||
run: poetry build | ||
|
||
- name: Publish to PyPI | ||
run: poetry publish |
This file was deleted.
Oops, something went wrong.
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,3 @@ | ||
# flake8: noqa | ||
from . import AnoPrimer | ||
from .AnoPrimer import * |
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 was deleted.
Oops, something went wrong.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
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
File renamed without changes.
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,9 @@ | ||
# AnoPrimer | ||
|
||
Welcome to the [AnoPrimer](https://github.com/sanjaynagi/AnoPrimer/) documentation! | ||
|
||
AnoPrimer is a python package for primer design in *An. gambiae* and *An. funestus*, whilst considering genetic variation in wild whole-genome sequenced specimens in malariagen_data. | ||
|
||
|
||
```{tableofcontents} | ||
``` |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,45 @@ | ||
# AnoPrimer API | ||
|
||
This notebook provides an overview of the API for the AnoPrimer python package, to design primers in *Anopheles* mosquitoes whilst considering genomic variation. | ||
|
||
## designPrimers() | ||
|
||
```{eval-rst} | ||
.. autofunction:: AnoPrimer::AnoPrimer.designPrimers | ||
``` | ||
|
||
## plot_primer_snp_frequencies() | ||
|
||
```{eval-rst} | ||
.. autofunction:: AnoPrimer::AnoPrimer.plot_primer_snp_frequencies | ||
``` | ||
|
||
## plot_primer_locs() | ||
|
||
```{eval-rst} | ||
.. autofunction:: AnoPrimer::AnoPrimer.plot_primer_locs | ||
``` | ||
|
||
## gget_blat_genome() | ||
|
||
```{eval-rst} | ||
.. autofunction:: AnoPrimer::AnoPrimer.gget_blat_genome | ||
``` | ||
|
||
## primer_params() | ||
|
||
```{eval-rst} | ||
.. autofunction:: AnoPrimer::AnoPrimer.primer_params | ||
``` | ||
|
||
## primer3_to_pandas() | ||
|
||
```{eval-rst} | ||
.. autofunction:: AnoPrimer::AnoPrimer.primer3_to_pandas | ||
``` | ||
|
||
## primer3_run_statistics() | ||
|
||
```{eval-rst} | ||
.. autofunction:: AnoPrimer::AnoPrimer.primer3_run_statistics | ||
``` |
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
2 changes: 1 addition & 1 deletion
2
docs/AgamPrimer-docs/requirements.txt → docs/AnoPrimer-docs/requirements.txt
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,4 +1,4 @@ | ||
jupyter-book | ||
matplotlib | ||
numpy | ||
AgamPrimer | ||
AnoPrimer |
Binary file not shown.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.