Skip to content

Commit

Permalink
update unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
Yenaled authored Jul 16, 2023
1 parent 8356eee commit 6615401
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/test_ref.py
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@ def test_ref(self):
self.gtf_path, use_version=True, filter_func=mock.ANY
)
create_t2g_from_fasta.assert_called_once_with(
cdna_fasta_path, t2g_path
cdna_fasta_path, t2g_path, aa_flag=False
)
split_genomic_fasta_to_cdna.assert_called_once_with(
self.fasta_path,
Expand Down Expand Up @@ -446,7 +446,7 @@ def test_ref_override_k(self):
self.gtf_path, use_version=True, filter_func=mock.ANY
)
create_t2g_from_fasta.assert_called_once_with(
cdna_fasta_path, t2g_path
cdna_fasta_path, t2g_path, aa_flag=False
)
split_genomic_fasta_to_cdna.assert_called_once_with(
self.fasta_path,
Expand Down Expand Up @@ -502,7 +502,7 @@ def test_ref_exists(self):
split_genomic_fasta_to_cdna.assert_not_called()
concatenate_files.assert_not_called()
create_t2g_from_fasta.assert_called_once_with(
cdna_fasta_path, t2g_path
cdna_fasta_path, t2g_path, aa_flag=False
)
kallisto_index.assert_called_once_with(
cdna_fasta_path, index_path, k=31
Expand Down Expand Up @@ -591,7 +591,7 @@ def test_ref_overwrite(self):
self.gtf_path, use_version=True, filter_func=mock.ANY
)
create_t2g_from_fasta.assert_called_once_with(
cdna_fasta_path, t2g_path
cdna_fasta_path, t2g_path, aa_flag=False
)
split_genomic_fasta_to_cdna.assert_called_once_with(
self.fasta_path,
Expand Down

0 comments on commit 6615401

Please sign in to comment.