Skip to content

Commit

Permalink
adjust to euler
Browse files Browse the repository at this point in the history
  • Loading branch information
gordonkoehn committed Aug 31, 2023
1 parent 2364701 commit d7e3958
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions workflows/mark02.smk
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@ from pyggdrasil.tree_inference import CellSimulationId, TreeType, TreeId, McmcCo

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

#####################
experiment="mark02"

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

#####################
# Error Parameters
Expand Down Expand Up @@ -296,7 +296,7 @@ rule combined_chain_histogram:
sublist = [float(x) for x in sublist]

# Create histogram for the sublist with the color and label
ax.hist(sublist,bins='auto', range = (0,1),alpha=0.5,color=colors[color_index],label=labels[i])
ax.hist(sublist,bins=100, range = (0,1),alpha=0.5,color=colors[color_index],label=labels[i])

# Set labels and title
ax.set_xlabel(f"Similarity: {wildcards.metric}")
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

0 comments on commit d7e3958

Please sign in to comment.