Skip to content

Commit 7bace78

Browse files
authored
Update CI, README (#124)
1 parent e320d7f commit 7bace78

2 files changed

Lines changed: 15 additions & 13 deletions

File tree

README.md

Lines changed: 5 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
[![Release](https://img.shields.io/github/release/bcgsc/ntJoin.svg)](https://github.com/bcgsc/ntJoin/releases)
2-
[![Issues](https://img.shields.io/github/issues/bcgsc/ntJoin.svg)](https://github.com/bcgsc/ntJoin/issues)
1+
[![Release](https://img.shields.io/github/release/BirolLab/ntJoin.svg)](https://github.com/BirolLab/ntJoin/releases)
2+
[![Issues](https://img.shields.io/github/issues/BirolLab/ntJoin.svg)](https://github.com/BirolLab/ntJoin/issues)
33
[![Conda](https://img.shields.io/conda/dn/bioconda/ntjoin?label=Conda)](https://anaconda.org/bioconda/ntjoin)
44
[![Published in Bioinformatics](https://img.shields.io/badge/Published%20in-Bioinformatics-blue.svg)](https://doi.org/10.1093/bioinformatics/btaa253)
55

6-
![Logo](https://github.com/bcgsc/ntJoin/blob/master/ntjoin-logo.png)
6+
![Logo](https://github.com/BirolLab/ntJoin/blob/master/ntjoin-logo.png)
77

88
# ntJoin
99

@@ -39,7 +39,7 @@ Design and implementation: Lauren Coombe
3939

4040
### Citing ntJoin
4141

42-
Thank you for your [![Stars](https://img.shields.io/github/stars/bcgsc/ntJoin.svg)](https://github.com/bcgsc/ntJoin/stargazers) and for using, developing and promoting this free software!
42+
Thank you for your [![Stars](https://img.shields.io/github/stars/BirolLab/ntJoin.svg)](https://github.com/BirolLab/ntJoin/stargazers) and for using, developing and promoting this free software!
4343

4444
If you use ntJoin in your research, please cite:
4545

@@ -131,15 +131,9 @@ ntJoin assemble target=my_scaffolds.fa target_weight=1 reference_config=config_f
131131
conda install -c bioconda -c conda-forge ntjoin=1.1.5
132132
```
133133

134-
#### Installing ntJoin using Brew
135-
ntJoin can be installed using [Homebrew](https://brew.sh) on macOS or [Linuxbrew](http://linuxbrew.sh) on Linux:
136-
```sh
137-
brew install brewsci/bio/ntjoin
138-
```
139-
140134
#### Installing ntJoin from the source code
141135
```sh
142-
curl -L --output ntJoin-1.1.5.tar.gz https://github.com/bcgsc/ntJoin/releases/download/v1.1.5/ntJoin-1.1.5.tar.gz && tar xvzf ntJoin-1.1.5.tar.gz
136+
curl -L --output ntJoin-1.1.5.tar.gz https://github.com/BirolLab/ntJoin/releases/download/v1.1.5/ntJoin-1.1.5.tar.gz && tar xvzf ntJoin-1.1.5.tar.gz
143137
```
144138

145139
## Dependencies

azure-pipelines.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,16 @@ jobs:
77
vmImage: 'ubuntu-latest'
88

99
steps:
10-
- script: echo "##vso[task.prependpath]$CONDA/bin"
11-
displayName: Add conda to PATH
10+
- script: |
11+
mkdir -p ~/miniforge3
12+
curl -L https://github.com/conda-forge/miniforge/releases/latest/download/Miniforge3-Linux-x86_64.sh -o ~/miniforge3/miniforge.sh
13+
bash ~/miniforge3/miniforge.sh -b -u -p ~/miniforge3
14+
rm -rf ~/miniforge3/miniforge.sh
15+
~/miniforge3/bin/conda init bash
16+
~/miniforge3/bin/conda init zsh
17+
export CONDA=$(realpath ~/miniforge3/bin)
18+
echo "##vso[task.prependpath]$CONDA"
19+
displayName: Install conda
1220
1321
- script: conda create --yes --quiet --name ntjoin_CI
1422
displayName: Create Anaconda environment

0 commit comments

Comments
 (0)