Skip to content

Commit

Permalink
adjust fp and scale down for euler test
Browse files Browse the repository at this point in the history
  • Loading branch information
gordonkoehn committed Aug 29, 2023
1 parent 8520af0 commit 0889a31
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions workflows/mark04.smk
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ from pyggdrasil.tree_inference import CellSimulationId, TreeType, TreeId

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

#####################
experiment="mark04"
Expand All @@ -22,7 +22,7 @@ metrics = ["MP3","AD","DL"] # <-- configure distances here

#####################
# Cell Simulation Parameters
num_samples = 30 # <-- configure number of samples here
num_samples = 200 # <-- configure number of samples here

# Errors <--- set the error rates here
selected_error_cond = ['IDEAL', 'TYPICAL', 'LARGE']
Expand All @@ -34,8 +34,8 @@ errors = {
name: all_error_cond[name]
for name in selected_error_cond
}
n_mutations = [30, 5, 10, 50] # <-- configure number of mutations here
n_cells = [200, 1000] #, 5000] # <-- configure number of cells here
n_mutations = [5] #, 10, 30, 50] # <-- configure number of mutations here
n_cells = [200] #, 1000] #, 5000] # <-- configure number of cells here

# Homozygous mutations [f: False / t: True]
observe_homozygous = "f" # <-- configure whether to observe homozygous mutations 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

0 comments on commit 0889a31

Please sign in to comment.