src/Information/Externals.jl
changed.
Other files ignored by Codecov
Project.toml
has changed.
21 | 21 | "Fast and accurate multivariate Gaussian modeling of protein families: predicting residue contacts and protein-interaction partners." |
|
22 | 22 | PloS one 9, no. 3 (2014): e92721. |
|
23 | 23 | """ |
|
24 | - | function gaussdca(msa; juliapath::String=joinpath(Sys.BINDIR,Base.julia_exename()), kargs...) |
|
24 | + | function gaussdca( |
|
25 | + | msa; |
|
26 | + | juliapath::String=joinpath(Sys.BINDIR,Base.julia_exename()), |
|
27 | + | project::String=Base.active_project(), |
|
28 | + | kargs...) |
|
25 | 29 | base_name = tempname() |
|
26 | 30 | if Sys.iswindows() |
|
27 | 31 | base_name = escape_string(base_name) |
37 | 41 | write(msa_file, msa, FASTA) |
|
38 | 42 | try |
|
39 | 43 | _create_script(script_file, msa_file, jdl_file; kargs...) |
|
40 | - | run(`$juliapath $script_file`) |
|
44 | + | run(`$juliapath --project=$project $script_file`) |
|
41 | 45 | pairedvalues = open(deserialize, jdl_file, "r") |
|
42 | 46 | for (i,j,value) in pairedvalues |
|
43 | 47 | plm[i,j] = value |
Files | Coverage |
---|---|
src | 89.28% |
Project Totals (53 files) | 89.28% |