Skip to content

Commit

Permalink
use engine python
Browse files Browse the repository at this point in the history
  • Loading branch information
tpall committed Jan 18, 2021
1 parent 611f49c commit 82c5972
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .tests/integration/config/samples.tsv
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
sample run fq platform
A A1 sars-cov2-reads.fq ILLUMINA
sample run fq platform
A A1 sars-cov2-reads.fq ILLUMINA
2 changes: 1 addition & 1 deletion workflow/Snakefile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ validate(config, "schemas/config.schema.yaml")


# Load runs and groups
df = pd.read_csv(config["samples"], sep=None, dtype=str).set_index(
df = pd.read_csv(config["samples"], sep=None, dtype=str, engine="python").set_index(
["sample", "run"], drop=False
)
validate(df, "schemas/samples.schema.yaml")
Expand Down

0 comments on commit 82c5972

Please sign in to comment.