Skip to content

Commit

Permalink
Merge pull request #72 from compbiocore/develop
Browse files Browse the repository at this point in the history
fix: remove package calls from viva script
  • Loading branch information
fernandogelin authored Jul 31, 2019
2 parents 0b65ee2 + 1e5e60a commit 555bafb
Showing 1 changed file with 7 additions and 15 deletions.
22 changes: 7 additions & 15 deletions viva
Original file line number Diff line number Diff line change
Expand Up @@ -6,24 +6,16 @@ println()
println("Loading dependency packages:")
println()

#println("1/5 ArgParse")
#import ArgParse

#using Pkg #remove after VariantVisualization is deployed
#Pkg.activate(@__DIR__) #remove after VariantVisualization is deployed
using VariantVisualization
println("...")

println("1/4 PlotlyJS")
using PlotlyJS

println("2/4 GeneticVariation")
using GeneticVariation

println("3/4 DelimitedFiles")
using DelimitedFiles

println("4/4 VariantVisualization")
using Pkg
try
using GeneticVariation
catch
Pkg.add("GeneticVariation")
using GeneticVariation
end

println()
println("Finished loading packages!")
Expand Down

2 comments on commit 555bafb

@fernandogelin
Copy link
Contributor Author

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

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.4.0 -m "<description of version>" 555bafb1a8cc7bf00d540336b5d39a35a7bb46ba
git push origin v0.4.0

Please sign in to comment.