Skip to content

Commit

Permalink
fix: no nan in function call
Browse files Browse the repository at this point in the history
  • Loading branch information
ninsch3000 committed May 12, 2023
1 parent 2bdf65d commit c3a19f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion workflow/rules/htsinfer.smk
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ config.setdefault("records", 100000)


# global variables
samples = pd.read_csv(config["samples"], header=0, index_col=0, sep="\t")
samples = pd.read_csv(config["samples"], header=0, index_col=0, sep="\t", keep_default_na=False)
OUT_DIR = config["outdir"]
LOG_DIR = os.path.join(OUT_DIR, "logs")
CLUSTER_LOG = os.path.join(LOG_DIR, "cluster_logs")
Expand Down

0 comments on commit c3a19f0

Please sign in to comment.