|
1 | | -# BioAlignments.jl |
| 1 | +# BioAlignments |
2 | 2 |
|
3 | | -**Latest release:** |
4 | | - |
5 | | -[![Latest Release][release-img]][release-url] |
6 | | -[![BioAlignments][juliapkg06-img]][juliapkg-url] |
7 | | -[![BioAlignments][juliapkg06-img]][juliapkg-url] |
8 | | -[![License][license-img]][license-url] |
9 | | -[![Docs Stable][docs-stable-img]][docs-stable-url] |
10 | | - |
11 | | - |
12 | | - |
13 | | -**Development status:** |
14 | | - |
15 | | -[![Build Status][travis-img]][travis-url] |
16 | | -[![Build status][appveyor-img]][appveyor-url] |
17 | | -[![codecov.io][codecov-img]][codecov-url] |
18 | | -[![Docs Latest][docs-latest-img]][docs-latest-url] |
| 3 | +[](https://github.com/BioJulia/BioAlignments.jl/releases/latest) |
| 4 | +[](https://github.com/BioJulia/BioAlignments.jl/blob/master/LICENSE) |
| 5 | +[](https://biojulia.github.io/BioAlignments.jl/stable) |
| 6 | +[](https://biojulia.github.io/BioAlignments.jl/latest/) |
| 7 | + |
| 8 | +[](https://discord.gg/z73YNFz) |
19 | 9 |
|
20 | 10 | ## Description |
21 | 11 |
|
22 | | -BioAlignments.jl provides alignment algorithms, data structures, and I/O tools |
23 | | -for SAM and BAM file formats. |
| 12 | +BioAlignments provides alignment algorithms, data structures, and I/O |
| 13 | +tools for SAM and BAM file formats. |
24 | 14 |
|
25 | 15 | ## Installation |
26 | 16 |
|
27 | 17 | Install BioAlignments from the Julia REPL: |
28 | 18 |
|
29 | 19 | ```julia |
30 | | -julia> Pkg.add("BioAlignments") |
| 20 | +using Pkg |
| 21 | +add("BioAlignments") |
| 22 | +#Pkg.add("BioAlignments") for julia prior to v0.7 |
31 | 23 | ``` |
32 | 24 |
|
33 | | -If you are interested in the cutting edge of the development, please check out |
34 | | -the master branch to try new features before release. |
| 25 | +If you are interested in the cutting edge of the development, please |
| 26 | +check out the master branch to try new features before release. |
| 27 | + |
| 28 | +## Testing |
| 29 | + |
| 30 | +BioAlignments is tested against julia `0.6` and current `0.7-dev` on |
| 31 | +Linux, OS X, and Windows. |
| 32 | + |
| 33 | +| **Latest release** | **Latest build status** | |
| 34 | +|:------------------:|:-----------------------:| |
| 35 | +| [](http://pkg.julialang.org/?pkg=BioAlignments) [](http://pkg.julialang.org/?pkg=BioAlignments) | [](https://travis-ci.org/BioJulia/BioAlignments.jl) [](https://ci.appveyor.com/project/Ward9250/bioalignments-jl/branch/master) [](http://codecov.io/github/BioJulia/BioAlignments.jl?branch=master) | |
35 | 36 |
|
36 | 37 | ## Contributing and Questions |
37 | 38 |
|
38 | | -We appreciate contributions from users including reporting bugs, fixing issues, |
39 | | -improving performance and adding new features. |
40 | | -Please go to the [contributing section of the documentation](biojulia.github.io/BioAlignments.jl/stable/contributing) |
41 | | -for more information. |
| 39 | +We appreciate contributions from users including reporting bugs, fixing |
| 40 | +issues, improving performance and adding new features. |
42 | 41 |
|
43 | | -If you have a question about |
44 | | -contributing or using this package, you are encouraged to use the |
45 | | -[Bio category of the Julia discourse |
46 | | -site](https://discourse.julialang.org/c/domain/bio). |
| 42 | +Take a look at the [CONTRIBUTING](CONTRIBUTING.md) file provided with |
| 43 | +this package for detailed contributor and maintainer guidelines. |
47 | 44 |
|
48 | | -[release-img]: https://img.shields.io/github/release/BioJulia/BioAlignments.jl.svg |
49 | | -[release-url]: https://github.com/BioJulia/BioAlignments.jl/releases/latest |
50 | | -[juliapkg05-img]: http://pkg.julialang.org/badges/BioAlignments_0.5.svg |
51 | | -[juliapkg06-img]: http://pkg.julialang.org/badges/BioAlignments_0.6.svg |
52 | | -[juliapkg-url]: http://pkg.julialang.org/?pkg=BioAlignments |
53 | | -[license-img]: https://img.shields.io/badge/license-MIT-green.svg |
54 | | -[license-url]: https://github.com/BioJulia/BioAlignments.jl/blob/master/LICENSE |
55 | | -[docs-stable-img]: https://img.shields.io/badge/docs-stable-blue.svg |
56 | | -[docs-stable-url]: https://biojulia.github.io/BioAlignments.jl/stable |
57 | | -[docs-latest-img]: https://img.shields.io/badge/docs-latest-blue.svg |
58 | | -[docs-latest-url]: https://biojulia.github.io/BioAlignments.jl/latest/ |
59 | | -[travis-img]: https://travis-ci.org/BioJulia/BioAlignments.jl.svg?branch=master |
60 | | -[travis-url]: https://travis-ci.org/BioJulia/BioAlignments.jl |
61 | | -[appveyor-img]: https://ci.appveyor.com/api/projects/status/klkynmkr1tgd30gq/branch/master?svg=true |
62 | | -[appveyor-url]: https://ci.appveyor.com/project/Ward9250/bioalignments-jl/branch/master |
63 | | -[codecov-img]: http://codecov.io/github/BioJulia/BioAlignments.jl/coverage.svg?branch=master |
64 | | -[codecov-url]: http://codecov.io/github/BioJulia/BioAlignments.jl?branch=master |
| 45 | +If you have a question about contributing or using this package, come |
| 46 | +on over and chat to us on [Discord][discord-url], or you can try the |
| 47 | +[Bio category of the Julia discourse site](https://discourse.julialang.org/c/domain/bio). |
0 commit comments