Skip to content

Commit 118c5ad

Browse files
authored
Merge pull request #48 from alyst/fix_registry
Remove BioJuliaRegistry
2 parents 3e3910c + 09075ef commit 118c5ad

File tree

4 files changed

+31
-37
lines changed

4 files changed

+31
-37
lines changed

.github/workflows/CompatHelper.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ jobs:
99
runs-on: ${{ matrix.os }}
1010
strategy:
1111
matrix:
12-
julia-version: [1.3.0]
13-
julia-arch: [x86]
12+
julia-version: [1]
13+
julia-arch: [x64]
1414
os: [ubuntu-latest]
1515
steps:
1616
- uses: julia-actions/setup-julia@latest

.github/workflows/TagBot.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
name: TagBot
22
on:
3-
schedule:
4-
- cron: '0 * * * *'
3+
issue_comment:
4+
types:
5+
- created
6+
workflow_dispatch:
57
jobs:
68
TagBot:
9+
if: github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot'
710
runs-on: ubuntu-latest
811
steps:
912
- uses: JuliaRegistries/TagBot@v1
1013
with:
1114
token: ${{ secrets.GITHUB_TOKEN }}
12-
ssh: ${{ secrets.TAGBOT_KEY }}
13-
registry: BioJulia/BioJuliaRegistry

README.md

Lines changed: 12 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# <img src="./sticker.svg" width="30%" align="right" /> BioAlignments
1+
# <img src="./sticker.svg" width="30%" align="right" /> BioAlignments.jl
22

33
[![Latest release](https://img.shields.io/github/release/BioJulia/BioAlignments.jl.svg)](https://github.com/BioJulia/BioAlignments.jl/releases/latest)
44
[![MIT license](https://img.shields.io/badge/license-MIT-green.svg)](https://github.com/BioJulia/BioAlignments.jl/blob/master/LICENSE)
@@ -7,29 +7,22 @@
77
[![Project Status: Active](https://www.repostatus.org/badges/latest/active.svg)](https://www.repostatus.org/#active)
88
[![Gitter](https://badges.gitter.im/BioJulia/BioAlignments.jl.svg)](https://gitter.im/BioJulia/BioAlignments.jl?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)
99

10-
1110
## Description
12-
BioAlignments provides alignment algorithms and data structures.
11+
12+
*BioAlignments.jl* provides sequence alignment algorithms and data structures.
1313

1414
## Installation
15-
BioAlignments is made available to install through BioJulia's package registry.
16-
By default, Julia's package manager only uses the "General" package registry.
17-
Your Julia configuration needs to include the BioJulia registry to be able to install the latest version of BioAlignments.
1815

19-
To add the BioJulia registry from the [Julia REPL](https://docs.julialang.org/en/v1/manual/getting-started/), press `]` to enter [pkg mode](https://docs.julialang.org/en/v1/stdlib/Pkg/), then enter the following command:
20-
```julia
21-
registry add https://github.com/BioJulia/BioJuliaRegistry.git
22-
```
16+
You can install *BioAlignments.jl* from Julia REPL in [pkg mode](https://docs.julialang.org/en/v1/stdlib/Pkg/):
2317

24-
After adding the registry to your configuration, you can install BioAlignments while in [pkg mode](https://docs.julialang.org/en/v1/stdlib/Pkg/) with the following:
25-
```julia
26-
add BioAlignments
18+
```
19+
pkg> add BioAlignments
2720
```
2821

2922
If you are interested in the cutting edge of the development, please check out the [develop branch](https://github.com/BioJulia/BioAlignments.jl/tree/develop) to try new features before release.
3023

31-
3224
## Testing
25+
3326
BioAlignments is tested against Julia `1.X` on Linux, OS X, and Windows.
3427

3528
**Latest build status:**
@@ -39,21 +32,24 @@ BioAlignments is tested against Julia `1.X` on Linux, OS X, and Windows.
3932
[![codecov](https://codecov.io/gh/BioJulia/BioAlignments.jl/branch/master/graph/badge.svg)](https://codecov.io/gh/BioJulia/BioAlignments.jl)
4033

4134
## Contributing
35+
4236
We appreciate [contributions](https://github.com/BioJulia/BioAlignments.jl/graphs/contributors) from users including reporting bugs, fixing issues, improving performance and adding new features.
4337

4438
Take a look at the [contributing files](https://github.com/BioJulia/Contributing) detailed contributor and maintainer guidelines, and code of conduct.
4539

4640
### Special Thanks
41+
4742
- Peter Haverty
4843
- GitHub [phaverty](https://github.com/phaverty)
4944

5045
### Financial contributions
46+
5147
We also welcome financial contributions in full transparency on our [open collective](https://opencollective.com/biojulia).
5248
Anyone can file an expense.
5349
If the expense makes sense for the development of the community, it will be "merged" in the ledger of our open collective by the core contributors and the person who filed the expense will be reimbursed.
5450

55-
5651
## Backers & Sponsors
52+
5753
Thank you to all our backers and sponsors!
5854

5955
Love our work and community? [Become a backer](https://opencollective.com/biojulia#backer).
@@ -75,4 +71,5 @@ Your logo will show up here with a link to your website.
7571
[![](https://opencollective.com/biojulia/sponsor/9/avatar.svg)](https://opencollective.com/biojulia/sponsor/9/website)
7672

7773
## Questions?
74+
7875
If you have a question about contributing or using BioJulia software, come on over and chat to us on [Gitter](https://gitter.im/BioJulia/General), or you can try the [Bio category of the Julia discourse site](https://discourse.julialang.org/c/domain/bio).

docs/src/index.md

Lines changed: 12 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# BioAlignments
1+
# BioAlignments.jl
22

33
[![Latest release](https://img.shields.io/github/release/BioJulia/BioAlignments.jl.svg)](https://github.com/BioJulia/BioAlignments.jl/releases/latest)
44
[![MIT license](https://img.shields.io/badge/license-MIT-green.svg)](https://github.com/BioJulia/BioAlignments.jl/blob/master/LICENSE)
@@ -7,29 +7,23 @@
77
[![Project Status: Active – The project has reached a stable, usable state and is being actively developed.](https://www.repostatus.org/badges/latest/active.svg)](https://www.repostatus.org/#active)
88
[![Gitter](https://badges.gitter.im/BioJulia/BioAlignments.jl.svg)](https://gitter.im/BioJulia/BioAlignments.jl?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)
99

10-
1110
## Description
12-
BioAlignments provides alignment algorithms and data structures.
11+
12+
*BioAlignments.jl* provides sequence alignment algorithms and data structures.
1313

1414
## Installation
15-
BioAlignments is made available to install through BioJulia's package registry.
16-
By default, Julia's package manager only uses the "General" package registry.
17-
Your Julia configuration needs to include the BioJulia registry to be able to install the latest version of BioAlignments.
1815

19-
To add the BioJulia registry from the [Julia REPL](https://docs.julialang.org/en/v1/manual/getting-started/), press `]` to enter [pkg mode](https://docs.julialang.org/en/v1/stdlib/Pkg/), then enter the following command:
20-
```julia
21-
registry add https://github.com/BioJulia/BioJuliaRegistry.git
22-
```
16+
You can install *BioAlignments.jl* from Julia REPL in [pkg mode](https://docs.julialang.org/en/v1/stdlib/Pkg/):
2317

24-
After adding the registry to your configuration, you can install BioAlignments while in [pkg mode](https://docs.julialang.org/en/v1/stdlib/Pkg/) with the following:
25-
```julia
26-
add BioAlignments
18+
```
19+
pkg> add BioAlignments
2720
```
2821

2922
If you are interested in the cutting edge of the development, please check out the [develop branch](https://github.com/BioJulia/BioAlignments.jl/tree/develop) to try new features before release.
3023

3124
## Testing
32-
BioAlignments is tested against Julia `1.X` on Linux, OS X, and Windows.
25+
26+
*BioAlignments.jl* is tested against Julia `1.X` on Linux, OS X, and Windows.
3327

3428
**Latest build status:**
3529

@@ -38,17 +32,19 @@ BioAlignments is tested against Julia `1.X` on Linux, OS X, and Windows.
3832
[![codecov](https://codecov.io/gh/BioJulia/BioAlignments.jl/branch/master/graph/badge.svg)](https://codecov.io/gh/BioJulia/BioAlignments.jl)
3933

4034
## Contributing
35+
4136
We appreciate [contributions](https://github.com/BioJulia/BioAlignments.jl/graphs/contributors) from users including reporting bugs, fixing issues, improving performance and adding new features.
4237

4338
Take a look at the [contributing files](https://github.com/BioJulia/Contributing) detailed contributor and maintainer guidelines, and code of conduct.
4439

4540
### Financial contributions
41+
4642
We also welcome financial contributions in full transparency on our [open collective](https://opencollective.com/biojulia).
4743
Anyone can file an expense.
4844
If the expense makes sense for the development of the community, it will be "merged" in the ledger of our open collective by the core contributors and the person who filed the expense will be reimbursed.
4945

50-
5146
## Backers & Sponsors
47+
5248
Thank you to all our backers and sponsors!
5349

5450
Love our work and community? [Become a backer](https://opencollective.com/biojulia#backer).
@@ -69,6 +65,6 @@ Your logo will show up here with a link to your website.
6965
[![](https://opencollective.com/biojulia/sponsor/8/avatar.svg)](https://opencollective.com/biojulia/sponsor/8/website)
7066
[![](https://opencollective.com/biojulia/sponsor/9/avatar.svg)](https://opencollective.com/biojulia/sponsor/9/website)
7167

72-
7368
## Questions?
69+
7470
If you have a question about contributing or using BioJulia software, come on over and chat to us on [Gitter](https://gitter.im/BioJulia/General), or you can try the [Bio category of the Julia discourse site](https://discourse.julialang.org/c/domain/bio).

0 commit comments

Comments
 (0)