Skip to content

Commit

Permalink
Prepare tag 0.17
Browse files Browse the repository at this point in the history
  • Loading branch information
jtackm committed Jul 31, 2020
1 parent 4dcdecb commit ac87d7b
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 10 deletions.
5 changes: 2 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,8 @@ os:
- windows
- osx
julia:
- 1.0
- 1.3
#- nightly
- 1.2
- 1.5
notifications:
email: false
addons:
Expand Down
13 changes: 12 additions & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,18 @@
# master (unpublished)
- no changes

# v0.16.0 (latest)
# v0.17.0 (latest)

### general
- Julia versions < 1.2 are no longer supported; this change was necessary for the interleaved parallelism
overhaul in this version
- the interleaved parallelism backend got fixed to properly support changes introduced in Julia 1.2;
it now runs more stably and features better error reporting

### bug fixes
- fixed occasional hangs when computing networks in parallel via the interleaved mode (issue #9)

# v0.16.0

### general
- add explicit parallelism flag (`parallel_mode`) to `learn_network` to avoid having to remove workers when switching from multi-core to single-core computations
Expand Down
4 changes: 2 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ keywords = ["metagenomics", "microbiome", "probabilistic-graphical-models", "hig
license = "GPL-3.0"
desc = "Inference of microbial interaction networks from large-scale heterogeneous abundance data"
authors = ["Janko Tackmann <janko.tackmann@gmail.com>"]
version = "0.16.0"
version = "0.17.0"

[deps]
Combinatorics = "861a8166-3701-5b0c-9a16-15d98fcdc6aa"
Expand Down Expand Up @@ -37,7 +37,7 @@ JSON = "0.21"
LightGraphs = "1"
SimpleWeightedGraphs = "1"
StatsBase = "0.32"
julia = "1"
julia = "1.2"

[extras]
DelimitedFiles = "8bb1440f-4735-579b-a4ab-409b98df4dab"
Expand Down
12 changes: 9 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,21 @@ FlashWeave predicts ecological interactions between microbes from large-scale co

## Installation ##

To install Julia, please follow instructions on https://github.com/JuliaLang/julia. The preferred way is to obtain a binary from https://julialang.org/downloads/. Make sure you install Julia 1.0 or above, the versions currently supported by FlashWeave.
To install Julia, please follow instructions on https://github.com/JuliaLang/julia. The preferred way is to obtain a binary from https://julialang.org/downloads/. Make sure you install Julia 1.2 or above, the versions currently supported by FlashWeave.

In an interactive Julia session, you can then install FlashWeave after typing `]` via

```julia
(v1.0) pkg> add FlashWeave
# to run tests: (v1.0) pkg> test FlashWeave
(v1.2) pkg> add FlashWeave
# to run tests: (v1.2) pkg> test FlashWeave
```

**Important note: from version 0.17, FlashWeave dropped support for Julia versions < 1.2. If you want to use FlashWeave with older Julia installations, make sure to install FlashWeave 0.16.0 (or lower) via `]` + `add FlashWeave@0.16.0`.**

## Latest changes ##

See [NEWS.md](https://github.com/meringlab/FlashWeave.jl/blob/master/NEWS.md) for the latest features and bugfixes.

## Basic usage ##

To learn an interaction network from an OTU table and (optionally) a meta data table, you can do
Expand Down
1 change: 0 additions & 1 deletion test/io.jl
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,6 @@ end
end

@testset "unfinished states" begin
println(tmp_path * "_unchecked.tsv")
unf_dict_ld = FlashWeave.load_unfinished_variable_info(tmp_path * "_unchecked.tsv")
@test begin
all(all(getproperty(unf_dict_ld[i], p) == getproperty(unf_dict[i], p)
Expand Down

2 comments on commit ac87d7b

@jtackm
Copy link
Member Author

@jtackm jtackm commented on ac87d7b Jul 31, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/18770

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.17.0 -m "<description of version>" ac87d7baa8639278dde12508f171406b65e2d900
git push origin v0.17.0

Please sign in to comment.