Skip to content
Snippets Groups Projects
Commit ae1c1465 authored by Holly Ruess's avatar Holly Ruess
Browse files

fix SE test

parent 7b7dc0cb
1 merge request!26Resolve "Annotate peaks"
Pipeline #7090 failed with stages
in 7 hours, 49 minutes, and 17 seconds
...@@ -20,7 +20,7 @@ single_end_human: ...@@ -20,7 +20,7 @@ single_end_human:
- branches - branches
- master - master
script: script:
- nextflow run workflow/main.nf - NXF_OPTS="-Dleveldb.mmap=false" nextflow run workflow/main.nf
- pytest -m singleend_human - pytest -m singleend_human
...@@ -30,5 +30,5 @@ paired_end_mouse: ...@@ -30,5 +30,5 @@ paired_end_mouse:
- branches - branches
- master - master
script: script:
- nextflow run workflow/main.nf --designFile "$CI_PROJECT_DIR/test_data/design_ENCSR451NAE_PE.txt" --genome 'GRCm38' --pairedEnd true --blacklist true - NXF_OPTS="-Dleveldb.mmap=false" nextflow run workflow/main.nf --designFile "$CI_PROJECT_DIR/test_data/design_ENCSR451NAE_PE.txt" --genome 'GRCm38' --pairedEnd true --blacklist true
- pytest -m pairedend_mouse - pytest -m pairedend_mouse
...@@ -18,7 +18,7 @@ def test_annotation_singleend_human(): ...@@ -18,7 +18,7 @@ def test_annotation_singleend_human():
annotation_file = test_output_path + 'ENCSR265ZXX.chipseeker_annotation.tsv' annotation_file = test_output_path + 'ENCSR265ZXX.chipseeker_annotation.tsv'
assert os.path.exists(annotation_file) assert os.path.exists(annotation_file)
assert utils.count_lines(annotation_file) >= 116265 assert utils.count_lines(annotation_file) >= 116163
@pytest.mark.pairedend_mouse @pytest.mark.pairedend_mouse
......
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