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 2fa413c commit 1725d7b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 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("./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 Expand Up @@ -72,4 +72,4 @@ def test_only_DLP_split():
x = SampleSheet("test/MICHELLE_420_ONLY_DLP.csv")
ss_list = x.split_sample_sheet()
assert(len(ss_list) == 1)
assert("Lane" in ss_list[0].df_ss_data.columns)
assert("Lane" in ss_list[0].df_ss_data.columns)

0 comments on commit 1725d7b

Please sign in to comment.