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 18, 2024
1 parent d165838 commit 3a49cbc
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions tests/test_jobcounts.py
Original file line number Diff line number Diff line change
Expand Up @@ -1628,15 +1628,15 @@ def test_allelic_mapping_fromBam_multicomp(self, ifs):
'--fromBAM',
'--bamExt',
'.filtered.bam',
'-m',
'allelic-mapping,deepTools_qc',
ifs / 'org.yaml',
'--sampleSheet',
ifs / 'sampleSheet_mc.tsv',
'--SNPfile',
ifs / 'allelic_input' / 'snpfile.txt',
'--NMaskedIndex',
ifs / 'allelic_input' / 'Ngenome'
'-m',
'allelic-mapping,deepTools_qc'
]
print(' '.join([str(i) for i in ci]))
_p = sp.run(ci, capture_output=True, text=True)
Expand All @@ -1655,7 +1655,11 @@ def test_allelic_alfree_multicomp(self, ifs):
'--sampleSheet',
ifs / 'sampleSheet_mc.tsv',
'-m',
'allelic-mapping,deepTools_qc,alignment-free'
'allelic-mapping,deepTools_qc,alignment-free',
'--VCFfile',
ifs / 'allelic_input' / 'file.vcf.gz',
'--strains',
'strain1'
]
print(' '.join([str(i) for i in ci]))
_p = sp.run(ci, capture_output=True, text=True)
Expand Down

0 comments on commit 3a49cbc

Please sign in to comment.