Skip to content

Xiao-Zhong/chloe

 
 

Repository files navigation

Chloe: Organelle Annotator

To run the annotator type:

julia annotate.jl --help

Chloe Server

Running the chloe server. In a terminal type:

JULIA_NUM_THREADS=4 julia src/chloe_svr.jl --level=info

In another terminal start julia:

using JuliaWebAPI

i = APIInvoker("tcp:https://127.0.0.1:9999")
# fasta and output should be relative to the server's working directory!
ret = apicall(i, "chloe", fastafile, outputfile) # outputfile is optional
code, data = ret["code"], ret["data"]
@assert code === 200
fname, elapsed_ms = data["filename"], data["elapsed"]
# to terminate the server
apicall(i, ":terminate")

Installing depenencies

Start julia -- in this directory -- and type ] then type:

pkg> activate .
pkg> instantiate
pkg> status

Notes:

See:

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Julia 84.0%
  • Perl 8.5%
  • Python 5.2%
  • Shell 1.8%
  • Makefile 0.5%