Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Running MARK03 - Post Log Prob Fix #160

Merged
merged 2 commits into from
Aug 31, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions workflows/mark03.smk
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@ from pyggdrasil.tree_inference import CellSimulationId, TreeType, TreeId, McmcCo

#####################
# Environment variables
DATADIR = "../data"
#DATADIR = "/cluster/work/bewi/members/gkoehn/data"
#DATADIR = "../data"
DATADIR = "/cluster/work/bewi/members/gkoehn/data"

#####################
experiment = "mark03"

# Metrics: Distances / Similarity Measure to use
metrics = ["MP3", "AD", "log_prob", "DL"] # <-- configure distances here
metrics = ["AD", "log_prob", "DL"] # also MP3 <-- configure distances here

#####################
# Error Parameters
Expand Down Expand Up @@ -64,7 +64,7 @@ CS_seed = 42 # <-- configure cell simulation seed here
#####################
# True Tree Parameters
tree_types = ["r"] # <-- configure tree type here ["r","s","d"]
tree_seeds = [42] # <-- configure tree seed here
tree_seeds = [42,34] # <-- configure tree seed here

#####################
#####################
Expand Down
6 changes: 3 additions & 3 deletions workflows/tree_inference.smk
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ from pyggdrasil.tree_inference import (
###############################################
## Relative path from DATADIR to the repo root

#REPODIR = "/cluster/work/bewi/members/gkoehn/repos/PYggdrasil"
REPODIR = ".."
#DATADIR = "/cluster/work/bewi/members/gkoehn/data"
REPODIR = "/cluster/work/bewi/members/gkoehn/repos/PYggdrasil"
#REPODIR = ".."
DATADIR = "/cluster/work/bewi/members/gkoehn/data"

###############################################

Expand Down
Loading