Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update #16

Merged
merged 1 commit into from
Aug 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
strategy:
matrix:
version:
- '1.0' # Oldest supported version
- '1.6' # Oldest supported version
- '1' # Latest release
- 'nightly'
os:
Expand Down
4 changes: 2 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
name = "FastaIO"
uuid = "a0c94c4b-ebed-5953-b5fc-82fe598ac79f"
author = ["Carlo Baldassi <carlobaldassi@gmail.com>"]
version = "1.0.2"
version = "1.1.0"

[deps]
GZip = "92fee26a-97fe-5a0c-ad85-20a5f3185b63"

[compat]
GZip = "0.5,0.6"
julia = "1"
julia = "1.6"

[extras]
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
Expand Down
24 changes: 9 additions & 15 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
# FastaIO.jl

| **Documentation** | **Build Status** |
|:-------------------------------------------------------------------------:|:------------------------------------------------------------:|
| [![][docs-stable-img]][docs-stable-url] [![][docs-dev-img]][docs-dev-url] | [![][travis-img]][travis-url][![][codecov-img]][codecov-url] |
[![DOCS][docs-img]][docs-url] [![CI][CI-img]][CI-url] [![CODECOV][codecov-img]][codecov-url]

Utilities to read/write FASTA format files in [Julia].

Expand All @@ -13,7 +11,7 @@ Utilities to read/write FASTA format files in [Julia].
To install the module, use Julia's package manager: start pkg mode by pressing <kbd>]</kbd> and then enter:

```
(v1.3) pkg> add FastaIO
(v1.10) pkg> add FastaIO
```

Dependencies will be installed automatically.
Expand All @@ -25,20 +23,16 @@ julia> using FastaIO

### Documentation

- [**STABLE**][docs-stable-url] &mdash; **most recently tagged version of the documentation.**
- [**DEV**][docs-dev-url] &mdash; *in-development version of the documentation.*

See also the examples in the `examples/` directory.
- The manual is [HERE][docs-url].
- See also the examples in the [examples directory](examples).

[Julia]: http://julialang.org

[docs-stable-img]: https://img.shields.io/badge/docs-stable-blue.svg
[docs-stable-url]: https://carlobaldassi.github.io/FastaIO.jl/stable
[docs-dev-img]: https://img.shields.io/badge/docs-dev-blue.svg
[docs-dev-url]: https://carlobaldassi.github.io/FastaIO.jl/dev

[travis-img]: https://travis-ci.com/carlobaldassi/FastaIO.jl.svg?branch=master
[travis-url]: https://travis-ci.com/carlobaldassi/FastaIO.jl
[docs-img]: https://img.shields.io/badge/docs-stable-blue.svg
[docs-url]: https://carlobaldassi.github.io/FastaIO.jl/stable

[codecov-img]: https://codecov.io/gh/carlobaldassi/FastaIO.jl/branch/master/graph/badge.svg
[codecov-url]: https://codecov.io/gh/carlobaldassi/FastaIO.jl

[CI-img]: https://github.com/carlobaldassi/FastaIO.jl/actions/workflows/ci.yml/badge.svg
[CI-url]: https://github.com/carlobaldassi/FastaIO.jl/actions/workflows/ci.yml
Loading