-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2034e0d
commit 2a0fc31
Showing
9 changed files
with
69 additions
and
55 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
if abspath(PROGRAM_FILE) == @__FILE__ | ||
import Chloe | ||
Chloe.cmd_main() | ||
Chloe.chloe_main(ARGS) | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,23 @@ | ||
module Chloe | ||
|
||
export annotate, annotate_batch, ReferenceDbFromDir, ReferenceDb, ChloeConfig, AbstractReferenceDb | ||
# export MayBeIO, MayBeString | ||
export annotate, annotate_batch, ReferenceDbFromDir, ReferenceDb, ChloeConfig, AbstractReferenceDb, annotate_one_task | ||
export chloe_main | ||
export distributed_main, chloe_distributed, run_broker, broker_main, get_distributed_args, maybe_launch_broker | ||
export distributed_main, broker_main | ||
export set_global_logger | ||
export annotate_one_task | ||
export ZMQ_CLIENT | ||
export ZMQ_ENDPOINT | ||
|
||
include("annotate_genomes.jl") | ||
|
||
include("dist/ZMQLogger.jl") | ||
include("dist/broker.jl") | ||
include("dist/WebAPI.jl") | ||
include("dist/chloe_cmd.jl") | ||
include("dist/tasks.jl") | ||
include("dist/chloe_distributed.jl") | ||
|
||
# import .ChloeDistributed: distributed_main, chloe_distributed, run_broker, get_distributed_args, maybe_launch_broker | ||
import .Annotator: annotate_batch, annotate, ReferenceDb, ReferenceDbFromDir, AbstractReferenceDb, ChloeConfig | ||
import .CmdLine: chloe_main | ||
import .Broker: broker_main | ||
import .ZMQLogging: set_global_logger | ||
import .ChloeDistributed: distributed_main, ZMQ_ENDPOINT, annotate_one_task | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
const REPO_DIR = dirname(@__FILE__) | ||
const CHLOE_REFERENCES = "chloe_references" | ||
const DEFAULT_GSREFS = joinpath(CHLOE_REFERENCES, "gsrefs") | ||
const DEFAULT_NUMGSREFS = 16 | ||
|
||
|
||
const DEFAULT_GSREFS = joinpath("chloe_references", "gsrefs") | ||
const DEFAULT_TEMPLATE = "templates.tsv" | ||
const DEFAULT_NUMGSREFS = 16 | ||
const DEFAULT_SENSITIVITY = 0.5 | ||
|
||
|