Skip to content

Commit

Permalink
fixed linting fix
Browse files Browse the repository at this point in the history
  • Loading branch information
MatthiasLienhard committed Aug 13, 2024
1 parent 831d16a commit c3f5f83
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion workflow/rules/misc_snake.smk
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ assert cr_version in ["7.1.0", "8.0.1"], f"Unsuppoerted cellranger version {cr_v
### import sample map and retrieve sample names
#################################################

sample_table = pd.read_table(config["inputOutput"]["sample_map"], sep="/t", header=0)
sample_table = pd.read_table(config["inputOutput"]["sample_map"], sep="\t", header=0)
sample_ids = set(sample_table["sample"])
# if samples specified in config, process only those
if "samples" in config:
Expand Down

0 comments on commit c3f5f83

Please sign in to comment.