-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
50 changed files
with
1,329 additions
and
1,220 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,25 @@ | ||
language: julia | ||
|
||
os: | ||
- linux | ||
- osx | ||
|
||
julia: | ||
- 0.6 | ||
- 1.0 | ||
|
||
addons: | ||
apt: | ||
packages: | ||
- hdf5-tools | ||
- hdf5-tools | ||
- qt5-default | ||
|
||
notifications: | ||
email: false | ||
|
||
script: | ||
- if [[ -a .git/shallow ]]; then git fetch --unshallow; fi | ||
- julia -e 'Pkg.clone(pwd()); Pkg.build("Kpax3");' | ||
- julia --check-bounds=yes -e 'Pkg.test("Kpax3", coverage=true);' | ||
- julia -e 'import Pkg; Pkg.add(Pkg.PackageSpec(path=pwd())); Pkg.build("Kpax3");' | ||
- julia --check-bounds=yes -e 'import Pkg; Pkg.test("Kpax3", coverage=true);' | ||
|
||
after_success: | ||
- julia -e 'cd(Pkg.dir("Kpax3")); Pkg.add("Coverage"); using Coverage; Codecov.submit(process_folder());' | ||
- julia -e 'import Pkg; import Kpax3; cd(joinpath(dirname(pathof(Kpax3)), "..")); Pkg.add("Coverage"); using Coverage; Codecov.submit(process_folder());' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,19 @@ | ||
# Kpax3.jl Release Notes | ||
|
||
## Changes from v0.3.0 to v0.4.0 | ||
|
||
* Upgrade to Julia 1.0 | ||
* Switched plotting library from `Gadfly` to `Plots` | ||
|
||
## Changes from v0.2.0 to v0.3.0 | ||
|
||
* Added function plotD for plotting the dataset with highlighted amino acids | ||
* Modified function plotP for reducing its output and memory size | ||
* Added axis labels to plotP | ||
* Updated the tutorial with the new plotD function | ||
* Created a convenient command line script for running Kpax3. You can find it on [GitHub Gist](https://gist.github.com/albertopessia/fd9df11fb2bdb158ad91936c4638d6fd) | ||
|
||
## Changes from v0.1.0 to v0.2.0 | ||
* Updated code for Julia 0.6 | ||
|
||
* Upgrade to Julia 0.6 | ||
* It is now possible to load generic categorical data from _csv_ files with the `CategoricalData` function |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,10 @@ | ||
julia 0.6 0.7- | ||
Clustering 0.5 | ||
Distances 0.2.1 | ||
FileIO 0.3 | ||
Gadfly 0.6.4 | ||
JLD 0.6.10 | ||
Measures 0.0.1 | ||
StatsBase 0.15 | ||
julia 1.0 2.0- | ||
Clustering 0.10 | ||
Distances 0.7 | ||
FileIO 1.0 | ||
GR 0.32 | ||
JLD2 0.1.0 | ||
Plots 0.19 | ||
SpecialFunctions 0.7 | ||
StatsBase 0.25 | ||
StatPlots 0.8 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.