Skip to content

Commit

Permalink
v1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
johnomics committed Apr 28, 2023
1 parent 14889cb commit 39434f0
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 10 deletions.
13 changes: 6 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Tapestry is designed for manual editing of small eukaryotic genome assemblies, p
## Getting Started

### Installation
Tapestry is in the [Bioconda](https://bioconda.github.io) repository. If you are set up to use Bioconda (see [Install conda](https://bioconda.github.io/#install-conda) and [Set up channels](https://bioconda.github.io/#set-up-channels)), install the latest release with `conda`:
Tapestry is in the [Bioconda](https://bioconda.github.io) repository. If you are set up to use Bioconda (see [Install conda](https://bioconda.github.io/#install-conda) and [Set up channels](https://bioconda.github.io/#set-up-channels)), install the latest release with `conda` (or [Mamba](https://mamba.readthedocs.io/en/latest/)):

```
conda install tapestry
Expand All @@ -20,31 +20,30 @@ conda install tapestry
If you want to install the latest commit, make sure the requirements below are satisfied (or a previous release is installed with conda), and then pull from github and install:
```
git clone https://github.com/johnomics/tapestry
cd tapestry
python setup.py install
pip install tapestry
```

### Requirements

Tapestry requires the following packages and tools (which will be installed by `conda` automatically):
Tapestry requires the following packages and tools:

- Linux or macOS
- Python 3.6 or later

- [minimap2](https://github.com/lh3/minimap2)
- [samtools](http://www.htslib.org/download/)

Python packages:
Python packages (should be installed by pip):
- biopython
- intervaltree
- jinja2
- numpy
- pandas
- plumbum
- pysam
- sqlalchemy
- sqlalchemy>=1.4.0
- tqdm

These dependencies can be installed with conda. Bioconda is not compatible with Apple Silicon; for recent Macs, install Python, minimap2 and samtools separately and then use `git clone` and `pip` as above. Use `make arm_neon=1` to compile minimap2 and samtools.

### Basic usage

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name="tapestry",
version="1.0.0",
version="1.0.1",
author="John Davey",
author_email="[email protected]",
description="Validate and edit small eukaryotic genome assemblies",
Expand All @@ -22,7 +22,7 @@
'pandas',
'plumbum',
'pysam',
'sqlalchemy',
'sqlalchemy>=1.4.0',
'tqdm',
]
)
2 changes: 1 addition & 1 deletion tapestry/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.0.0"
__version__ = "1.0.1"

0 comments on commit 39434f0

Please sign in to comment.