Skip to content
Snippets Groups Projects
Commit 44edba97 authored by Jeremy Mathews's avatar Jeremy Mathews
Browse files

Error Check Update path name

parent b127caa6
1 merge request!49Fix fasta file refernce and add check for correct genome version
Pipeline #4016 failed with stages
in 8 hours, 2 minutes, and 55 seconds
...@@ -21,7 +21,7 @@ def test_limited_peaks_singleend(): ...@@ -21,7 +21,7 @@ def test_limited_peaks_singleend():
def test_motif_search_singleend(): def test_motif_search_singleend():
assert os.path.exists(os.path.join(test_output_path, 'ENCSR238SGC_memechip', 'ENCSR238SGC.fa')) assert os.path.exists(os.path.join(test_output_path, 'ENCSR238SGC_memechip', 'ENCSR238SGC.fa'))
assert os.path.exists(os.path.join(test_output_path, 'ENCSR238SGC_memechip', 'index.html')) assert os.path.exists(os.path.join(test_output_path, 'ENCSR238SGC_memechip', 'index.html'))
assert os.path.getsize(test_output_path + 'ENCSR238SGC.fa') > 0 assert os.path.getsize(os.path.join(test_output_path, 'ENCSR238SGC_memechip', 'ENCSR238SGC.fa')) > 0
@pytest.mark.singleskip_true @pytest.mark.singleskip_true
def test_motif_search_singleend(): def test_motif_search_singleend():
...@@ -39,4 +39,4 @@ def test_limited_peaks_pairedend(): ...@@ -39,4 +39,4 @@ def test_limited_peaks_pairedend():
def test_motif_search_pairedend(): def test_motif_search_pairedend():
assert os.path.exists(os.path.join(test_output_path, 'ENCSR729LGA_memechip', 'ENCSR729LGA.fa')) assert os.path.exists(os.path.join(test_output_path, 'ENCSR729LGA_memechip', 'ENCSR729LGA.fa'))
assert os.path.exists(os.path.join(test_output_path, 'ENCSR729LGA_memechip', 'index.html')) assert os.path.exists(os.path.join(test_output_path, 'ENCSR729LGA_memechip', 'index.html'))
assert os.path.getsize(test_output_path + 'ENCSR729LGA.fa') > 0 assert os.path.getsize(os.path.join(test_output_path, 'ENCSR238SGC_memechip', 'ENCSR729LGA.fa')) > 0
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment