Skip to content

Commit

Permalink
pytest
Browse files Browse the repository at this point in the history
  • Loading branch information
katarzyna.otylia.sikora@gmail.com committed Apr 17, 2024
1 parent 478792c commit 54ba995
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions tests/test_jobcounts.py
Original file line number Diff line number Diff line change
Expand Up @@ -1593,7 +1593,7 @@ def test_allelic_count_fromBam_singlecomp(self, ifs):
print(' '.join([str(i) for i in ci]))
_p = sp.run(ci, capture_output=True, text=True)
assert _p.returncode == 0
assert parseSpOut(_p) == 330
assert parseSpOut(_p) == 105
def test_allelic_count_fromBam_multicomp(self, ifs):
ci = [
"mRNA-seq",
Expand All @@ -1615,7 +1615,7 @@ def test_allelic_count_fromBam_multicomp(self, ifs):
print(' '.join([str(i) for i in ci]))
_p = sp.run(ci, capture_output=True, text=True)
assert _p.returncode == 0
assert parseSpOut(_p) == 330
assert parseSpOut(_p) == 108
def test_allelic_mapping_fromBam_multicomp(self, ifs):
ci = [
"mRNA-seq",
Expand All @@ -1631,6 +1631,10 @@ def test_allelic_mapping_fromBam_multicomp(self, ifs):
ifs / 'org.yaml',
'--sampleSheet',
ifs / 'sampleSheet_mc.tsv',
'--VCFfile',
ifs / 'allelic_input' / 'file.vcf.gz',
'--strains',
'strain1',
'-m',
'allelic-mapping,deepTools_qc'
]
Expand Down

0 comments on commit 54ba995

Please sign in to comment.