Skip to content

Commit

Permalink
update to 0.0.3:
Browse files Browse the repository at this point in the history
- fix escaping of tabs through command line
- improve README.md
  • Loading branch information
MrTomRod committed May 11, 2022
1 parent 2fdafe6 commit 909023b
Show file tree
Hide file tree
Showing 4 changed files with 47 additions and 1 deletion.
38 changes: 38 additions & 0 deletions Notes.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# How to publish

## Pypi

Create update:

1) Change version number in [pyproject.toml](pyproject.toml)
2) Create new package and upload:

```bash
# build: will create files in dist/
poetry build
# test: install .whl file
pip install dist/scoary_2-*-py3-none-any.whl
# upload
poetry publish
```

## Docker / Podman

If you use docker, simply replace each `podman` with `docker`.

```shell
podman build --tag troder/scoary-2 .
```

Publish docker image:

```shell
# podman login docker.io --get-login
# podman login docker.io
podman tag troder/scoary-2 troder/scoary-2:<scoary-version>
podman push troder/scoary-2:<scoary-version>

# update tag 'latest'
podman tag troder/scoary-2 troder/scoary-2:latest
podman push troder/scoary-2:latest
```
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,10 @@ docker run \
/bin/bash
```

# Overview of the algorithm

![algorithm flowchart](media/ScoaryWorkflow.drawio.svg)

# Todo:

- [X] Binarize traits during multiprocessing
Expand Down
4 changes: 4 additions & 0 deletions media/ScoaryWorkflow.drawio.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "scoary-2"
version = "0.0.2"
version = "0.0.3"
description = "Scoary 2: Associate genes with traits!"
authors = ["MrTomRod <[email protected]>"]
license = "GPL3"
Expand Down

0 comments on commit 909023b

Please sign in to comment.