You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+58-17Lines changed: 58 additions & 17 deletions
Original file line number
Diff line number
Diff line change
@@ -25,9 +25,23 @@ macOS ( Sierra, High Sierra, and Mojave ), Windows (7 and 10), and Linux.
25
25
26
26
### Step 1: Install Julia
27
27
28
-
Download [Julia]("https://julialang.org/downloads/") and install the language following the [platform specific instructions](https://julialang.org/downloads/platform.html).
28
+
1. Download [Julia]("https://julialang.org/downloads/") and install the language following the [platform specific instructions](https://julialang.org/downloads/platform.html).
29
+
30
+
2. Then, follow add Julia to the path variable to run VIVA.
31
+
32
+
To add Julia to the PATH on Windows 7 or Windows 10:
33
+
34
+
Add the path to the Julia binaries (C:\Program Files\Julia\bin) to the PATH following the concise instructions [found here](https://www.java.com/en/download/help/path.xml)
35
+
36
+
To add Julia to the PATH on Mac run the following line in the Terminal:
Be sure to replace "/Applications/Julia-1.1.app/..." to reflect the version of Julia you've downloaded.
41
+
42
+
43
+
*Linux Note*: To run on remote compute clusters, you may need to load the opengl and julia modules.
29
44
30
-
Then, follow our [installation notes]("https://compbiocore.github.io/VariantVisualization.jl/latest/installation/") to add Julia to the path variable to run VIVA.
31
45
32
46
### Step 2: Install VariantVisualization.jl
33
47
@@ -38,25 +52,35 @@ To install VariantVisualization.jl:
38
52
1. Open the command line or PowerShell
39
53
2. Run the following block of code
40
54
41
-
>`julia`
55
+
```julia
56
+
julia
57
+
]add VarianatVisualization
58
+
exit()
59
+
```
60
+
### Step 3: Run `viva`
42
61
43
-
>`]`
62
+
#### Mac and Linux
44
63
45
-
>`add VariantVisualization`
64
+
On Mac and Linux, open another terminal window, navigate to your project folder and run:
@@ -67,15 +91,32 @@ To install the VIVA Jupyer Notebook:
67
91
68
92
Then, follow the in-notebook instructions to generate your plots.
69
93
70
-
##Run VIVA
94
+
### Latest Features
71
95
72
-
Navigate in the Terminal or PowerShell to the directory containing the viva script run the VIVA command.
96
+
To stay up to date with cutting edge development features install VariantVisualization.jl from the Master branch.
73
97
74
-
>cd new_folder/
98
+
From the Julia REPL:
75
99
76
-
>julia viva -f vcf.file arg1 arg2 arg3
100
+
```shell
101
+
julia
102
+
]add VariantVisualization#master
103
+
```
104
+
105
+
### For Developers
106
+
107
+
Install VariantVisualization in development mode:
108
+
```shell
109
+
julia
110
+
]dev VariantVisualization
111
+
```
112
+
113
+
VIVA Jupyter notebook and the VIVA the command line tool are built with functions contained in our VariantVisualization.jl package.
114
+
115
+
Developers may contribute to these open source tools by using [functions contained within VariantVisualization.jl](https://github.com/compbiocore/VariantVisualization.jl/tree/master/src/) which are carefully documented with docstrings.
116
+
117
+
We have included in-line comments within the code for the [VIVA command line tool](https://github.com/compbiocore/VariantVisualization.jl/tree/master/viva).
77
118
78
-
We provide test files to run [EXAMPLES](https://compbiocore.github.io/VariantVisualization.jl/latest/examples/) after installation.
119
+
The ***VIVA Jupyter notebook*** is powered by a [main function](https://github.com/compbiocore/VariantVisualization.jl/tree/master/src/new_notebook_utils.jl) which takes arguments defined by the user in the notebook. We welcome users to post in issues to request a new feature or bug fix.
0 commit comments