Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
charles-cowart committed Dec 15, 2023
1 parent cd6008a commit 5ccf9c2
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 10 deletions.
4 changes: 0 additions & 4 deletions metapool/scripts/tests/test_seqpro.py
Original file line number Diff line number Diff line change
Expand Up @@ -237,10 +237,6 @@ def test_fastp_run(self):

for prep in exp_preps:
obs = pd.read_csv(prep, sep='\t').to_dict('index')
print(obs)
print("############")
print(exp[prep])
print("")
self.assertDictEqual(obs, exp[prep])

def test_verbose_flag(self):
Expand Down
6 changes: 0 additions & 6 deletions metapool/tests/test_sample_sheet.py
Original file line number Diff line number Diff line change
Expand Up @@ -1339,9 +1339,6 @@ def test_sample_sheet_to_dataframe(self):

exp = pd.DataFrame(index=index, data=DF_DATA, columns=columns)
exp.index.name = 'sample_id'
print(obs.head())
print("###")
print(exp.head())
pd.testing.assert_frame_equal(obs, exp)


Expand Down Expand Up @@ -1449,11 +1446,8 @@ def test_demux_sample_sheet(self):
# assert that each sample-sheet appears in the correct order and
# matches known results.
for replicate_output_path in self.replicate_output_paths:
print(replicate_output_path)
exp = MetagenomicSampleSheetv100(replicate_output_path)
obs = results.pop(0)
print("OBS: %s" % obs.Header)
print("EXP: %s" % exp.Header)
self.assertEqual(obs.Header, exp.Header)
self.assertEqual(obs.Reads, exp.Reads)
self.assertEqual(obs.Settings, exp.Settings)
Expand Down

0 comments on commit 5ccf9c2

Please sign in to comment.