Skip to content

Commit

Permalink
change paths rna test
Browse files Browse the repository at this point in the history
  • Loading branch information
Hande Schmidt committed Jul 4, 2024
1 parent 112c853 commit fe83224
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion tests/test_mRNA.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def test_mrna(self, ifs):
[
'mRNA-seq',
'-i',
Path('tests') / 'data' / 'mRNA',
Path('tests') / 'data' / 'mRNA_mIFNB',
'-o',
'test_mrna',
'--clusterConfig',
Expand All @@ -67,4 +67,21 @@ def test_mrna(self, ifs):
]
)
assert Path('test_mrna/mRNA-seq_snakePipes.done').is_file() == True

def test_mrna4(self, ifs):
org = ifs / 'org.yaml'
clusterconfig = Path('tests') / 'data' / 'cluster_config.yaml'
sp.run(
[
'mRNA-seq',
'-i',
Path('tests') / 'data' / 'mRNA_BcellPancreas',
'-o',
'test_mrna_4sample',
'--clusterConfig',
clusterconfig,
org
]
)
assert Path('test_mrna_4sample/mRNA-seq_snakePipes.done').is_file() == True

0 comments on commit fe83224

Please sign in to comment.