Skip to content

Commit 798b17a

Browse files
authored
Merge pull request #78 from compbiocore/develop
refactor(reviseVersionInProject.TomlToBe4.1InsteadOf4.2ToAvoidMissing…
2 parents e902339 + 344605e commit 798b17a

File tree

5 files changed

+11
-10
lines changed

5 files changed

+11
-10
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "VariantVisualization"
22
uuid = "7f8bf45c-0ad5-53b5-97e6-33c1305e0aa4"
33
authors = ["George Tollefson <gatollefson@gmail.com>"]
4-
version = "0.4.2"
4+
version = "0.4.1"
55

66
[deps]
77
DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0"

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@ Add the path to the Julia binaries (C:\Program Files\Julia\bin) to the PATH foll
3535

3636
To add Julia to the PATH on Mac run the following line in the Terminal:
3737

38-
> sudo ln -s /Applications/Julia-1.1.app/Contents/Resources/julia/bin/julia /usr/local/bin/julia
38+
> sudo ln -s /Applications/Julia-1.2.app/Contents/Resources/julia/bin/julia /usr/local/bin/julia
3939
40-
Be sure to replace "/Applications/Julia-1.1.app/..." to reflect the version of Julia you've downloaded.
40+
Be sure to replace "/Applications/Julia-1.2.app/..." to reflect the version of Julia you've downloaded.
4141

4242

4343
*Linux Note*: To run on remote compute clusters, you may need to load the opengl and julia modules.

docs/src/installation.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ Add the path to the Julia binaries (C:\Program Files\Julia\bin) to the PATH foll
1616

1717
To add Julia to the PATH on Mac run the following line in the Terminal:
1818

19-
> sudo ln -s /Applications/Julia-1.1.app/Contents/Resources/julia/bin/julia /usr/local/bin/julia
19+
> sudo ln -s /Applications/Julia-1.2.app/Contents/Resources/julia/bin/julia /usr/local/bin/julia
2020
21-
Be sure to replace "/Applications/Julia-1.1.app/..." to reflect the version of Julia you've downloaded.
21+
Be sure to replace "/Applications/Julia-1.2.app/..." to reflect the version of Julia you've downloaded.
2222

2323

2424
*Linux Note*: To run on remote compute clusters, you may need to load the opengl and julia modules.
@@ -102,7 +102,7 @@ The ***VIVA Jupyter notebook*** is powered by a [main function](https://github.c
102102

103103
### Running VIVA with Docker or Docker Compose
104104

105-
You can run VIVA using the Docker images we've provided if you don't want to install Julia and the VariantVisualization.jl Julia package.
105+
You can run VIVA using the Docker images we've provided if you don't want to install Julia and the VariantVisualization.jl Julia package.
106106

107107
To run VIVA from a Docker image, first [install Docker](https://docs.docker.com/install/).
108108

src/plot_utils.jl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -120,8 +120,8 @@ function genotype_heatmap_with_groups(input::Array{Int64,2},title::String,chrom_
120120
transpose=true,
121121

122122
colorscale = [
123-
[0, "rgb(151, 154, 154)"], #dark grey
124-
[0.2, "rgb(208, 211, 212)"], #light grey
123+
[0, "rgb(208, 211, 212)"], #light grey
124+
[0.2, "rgb(151, 154, 154)"], #dark grey
125125
[0.4, "rgb(255,255,255)"], #white
126126
#[0.4, "rgb(56,25,90)"], #dark blue
127127
[0.6, "rgb(51,106,145)"], #blue
@@ -352,8 +352,8 @@ function dp_heatmap2_with_groups(input::Array{Int64,2},title::String,chrom_label
352352
transpose=true,
353353

354354
colorscale = [
355-
[0, "rgb(151, 154, 154)"], #dark grey
356-
[0.125, "rgb(208, 211, 212)"], #light grey
355+
[0, "rgb(208, 211, 212)"], #light grey
356+
[0.125, "rgb(151, 154, 154)"], #dark grey
357357
[0.25, "rgb(255, 255, 255)"],
358358
[0.4, "rgb(153,231,255)"],
359359
[0.5, "rgb(79,146,255)"],

viva

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ using VariantVisualization
1010
println("...")
1111

1212
using Pkg
13+
1314
try
1415
using GeneticVariation
1516
catch

0 commit comments

Comments
 (0)