Skip to content

Commit

Permalink
Prepare tag
Browse files Browse the repository at this point in the history
  • Loading branch information
jtackm committed Dec 21, 2019
1 parent 807835f commit 113cd0e
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 9 deletions.
6 changes: 5 additions & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# master (unpublished)

No changes yet

# v0.15.0 (latest)

### general
- improve sign determination for conditional mutual information tests
- remove jld2 support due to stability issues
Expand All @@ -13,7 +17,7 @@ header positions could not be read
- fix bug where zero weights were assigned to highly associated variable pairs in rare cases
- fix bug that could lead to the first data column being parsed as row identifiers if it had no duplicate entries

# v0.14.0 (minor, latest)
# v0.14.0

### general
- allow string factors in meta data
Expand Down
12 changes: 6 additions & 6 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,15 +28,15 @@ StatsBase = "2913bbd2-ae8a-5f71-8c99-4fb6c76f3a91"

[compat]
Combinatorics = "1"
DataStructures = "0.17"#[0.12.0]"
Distributions = "0.21"#"0.16, 0.21, 0.22"
DataStructures = "0.17"
Distributions = "0.21"
FileIO = "1"
HDF5 = "0.12"#"≥ 0.10.0"
JLD2 = "0.1"#"≥ 0.1.0"
JSON = "0.21"#"≥ 0.19.0"
HDF5 = "0.12"
JLD2 = "0.1"
JSON = "0.21"
LightGraphs = "1"
SimpleWeightedGraphs = "1"
StatsBase = "0.32"#"[0.25.0, 0.32]"
StatsBase = "0.32"
julia = "1"

[extras]
Expand Down
2 changes: 0 additions & 2 deletions test/preprocessing.jl
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
using FlashWeave
using StatsBase
#using FileIO
using Test
using SparseArrays, DelimitedFiles, Statistics

data = Matrix{Float64}(readdlm(joinpath("data", "HMP_SRA_gut", "HMP_SRA_gut_small.tsv"), '\t')[2:end, 2:end])
data_sparse = sparse(data)

#exp_dict = load(joinpath("data", "preprocessing_expected.jld2"), "exp_dict")
exp_folder = joinpath("data", "preprocessing_expected")
exp_dict = Dict{Any,Any}(replace(splitext(file)[1], '_'=>'-') => readdlm(joinpath(exp_folder, file), '\t')
for file in readdir(exp_folder))
Expand Down

2 comments on commit 113cd0e

@jtackm
Copy link
Member Author

@jtackm jtackm commented on 113cd0e Dec 21, 2019

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/7017

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 Julia TagBot is installed, or can be done manually through the github interface, or via:

git tag -a v0.15.0 -m "<description of version>" 113cd0e68588076cd4f5b66c6886ad084be913f5
git push origin v0.15.0

Please sign in to comment.