diff --git a/workflow/tests/test_experiment_qc.py b/workflow/tests/test_experiment_qc.py index 2cccf00e051418d9d7aeb0ff4f4d0c9c44576f7f..1401dddf2d5db9d50e6d4dd3ed5f7ff26e0febcd 100644 --- a/workflow/tests/test_experiment_qc.py +++ b/workflow/tests/test_experiment_qc.py @@ -27,45 +27,14 @@ def design_bam(): def test_coverage_singleend_human(): assert os.path.exists(os.path.join(test_output_path, 'sample_mbs.npz')) assert os.path.exists(os.path.join(test_output_path, 'coverage.pdf')) - - -@pytest.mark.singleend_human -def test_spearman_singleend_human(): assert os.path.exists(os.path.join(test_output_path, 'heatmap_SpearmanCorr.pdf')) - - -@pytest.mark.singleend_human -def test_pearson_singleend_human(): assert os.path.exists(os.path.join(test_output_path, 'heatmap_PearsonCorr.pdf')) -@pytest.mark.singleend_human -def test_fingerprint_singleend_human(): - assert os.path.exists(os.path.join(test_output_path, 'ENCLB170KFO_fingerprint.pdf')) - assert os.path.exists(os.path.join(test_output_path, 'ENCLB969KTX_fingerprint.pdf')) - - @pytest.mark.pairedend_mouse def test_coverage_pairedend_mouse(): assert os.path.exists(os.path.join(test_output_path, 'sample_mbs.npz')) assert os.path.exists(os.path.join(test_output_path, 'coverage.pdf')) - - -@pytest.mark.pairedend_mouse -def test_spearman_pairedend_mouse(): assert os.path.exists(os.path.join(test_output_path, 'heatmap_SpearmanCorr.pdf')) - - -@pytest.mark.pairedend_mouse -def test_pearson_pairedend_mouse(): assert os.path.exists(os.path.join(test_output_path, 'heatmap_PearsonCorr.pdf')) - -@pytest.mark.pairedend_mouse -def test_fingerprint_pairedend_mouse(): - assert os.path.exists(os.path.join(test_output_path, 'ENCLB749GLW_fingerprint.pdf')) - assert os.path.exists(os.path.join(test_output_path, 'ENCLB122XDP_fingerprint.pdf')) - - - -