Skip to content

Releases: BioJulia/BioSymbols.jl

v5.1.3

15 May 11:58
efb84c8
Compare
Choose a tag to compare

BioSymbols v5.1.3

Diff since v5.1.2

Merged pull requests:

v5.1.2

12 Nov 13:33
e026408
Compare
Choose a tag to compare

BioSymbols v5.1.2

Diff since v5.1.1

Merged pull requests:

v5.1.1

05 Jul 15:01
3311b5b
Compare
Choose a tag to compare

BioSymbols v5.1.1

Diff since v5.1.0

Merged pull requests:

v5.1.0

30 Oct 15:55
c8e893b
Compare
Choose a tag to compare

BioSymbols v5.1.0

Diff since v5.0.0

Closed issues:

  • Version 5 (#45)

Merged pull requests:

v5.0.0

16 Jun 23:45
Compare
Choose a tag to compare

BioSymbols v5.0.0

Diff since v4.0.4

Closed issues:

  • Remove iteration of BioSymbol (#41)

Merged pull requests:

v4.0.4

31 May 00:02
04ee588
Compare
Choose a tag to compare

BioSymbols v4.0.4

Diff since v4.0.3

Merged pull requests:

v4.0.3

24 May 02:10
1a394fa
Compare
Choose a tag to compare

BioSymbols v4.0.3

Diff since v4.0.2

v4.0.2

24 May 02:10
67d8c0a
Compare
Choose a tag to compare

BioSymbols v4.0.2

Diff since v4.0.1

v4.0.1

24 May 02:10
Compare
Choose a tag to compare

BioSymbols v4.0.1

Diff since v4.0.0

Closed issues:

  • Release version 4.0 (#34)

Version 4

08 May 23:02
Compare
Choose a tag to compare
Project update (#33)

This removes testing for julia v0.6 and removes the use of Nullables.

Prior to julia 1.0 (and 0.7), the tryparse method would return
Nullable{T} values.

But now they return either an AminoAcid or "nothing",
since improvements in julia v1.0 and v0.7 mean simple
unions are now actually efficient.

DNA and RNA is unified under an abstract `NucleicAcid` type, which
allows us to rewrite some methods more generically.

The print and show methods have been re-written into generic forms,
as have the `isless` and other operators.

The packages of the julia ecosystem are moving away from a hacked
system that still required the old REQUIRE files.

This commit removes the code of conduct, contributing and humans files.

It also replaces the REQUIRE file with a Project.toml file, and updates
the readme file.

A coverage folder is added along with its own project TOML file.

The appveyor configuration file is also updated to match the more recent
julia package examples.