Skip to content

Commit

Permalink
Update test_SampleSheet.py
Browse files Browse the repository at this point in the history
  • Loading branch information
CuijieLu authored Feb 29, 2024
1 parent 1725d7b commit 9951110
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test_SampleSheet.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@
import pytest

def test_mixed_10X_barcodes():
x = SampleSheet("./test/MICHELLE_0543_10X_MIXED.csv")
x = SampleSheet("igo-demux/test/MICHELLE_0543_10X_MIXED.csv")
ss_list = x.split_sample_sheet()

if "OverrideCycles" in ss_list[1].df_ss_header.astype(str):
assert(False)
print(ss_list[2].df_ss_header)

def test_only_10XSI_barcodes():
x = SampleSheet("./test/SampleSheet_10X_SI.csv")
x = SampleSheet("test/SampleSheet_10X_SI.csv")
print("Calling split sample sheet.")
ss_list = x.split_sample_sheet()
print("After split sample sheet.")
Expand Down

0 comments on commit 9951110

Please sign in to comment.