Skip to content
Snippets Groups Projects
Commit a7c12561 authored by Venkat Malladi's avatar Venkat Malladi
Browse files

Fix references to libraries.

parent 624918a8
Branches
Tags
No related merge requests found
Pipeline #2231 failed with stages
in 8 seconds
......@@ -2,7 +2,7 @@
import pytest
import os
from python_utils import utils
import utils
test_output_path = os.path.dirname(os.path.abspath(__file__)) + \
'/../output/callPeaksMACS/'
......
......@@ -3,7 +3,7 @@
import pytest
import pandas as pd
from io import StringIO
from design_file import experiment_design
import experiment_design
import os
test_output_path = os.path.dirname(os.path.abspath(__file__)) + \
......
......@@ -4,7 +4,7 @@ import pytest
import os
import pandas as pd
from io import StringIO
from quality_metrics import experiment_qc
import experiment_qc
test_output_path = os.path.dirname(os.path.abspath(__file__)) + \
'/../output/experimentQC/'
......
......@@ -4,8 +4,8 @@ import pytest
import pandas as pd
from io import StringIO
import os
from python_utils import utils
from call_peaks import overlap_peaks
import utils
import overlap_peaks
test_output_path = os.path.dirname(os.path.abspath(__file__)) + \
'/../output/consensusPeaks/'
......
......@@ -4,7 +4,7 @@ import pytest
import pandas as pd
from io import StringIO
import os
from call_peaks import pool_and_psuedoreplicate
import pool_and_psuedoreplicate
test_output_path = os.path.dirname(os.path.abspath(__file__)) + \
'/../output/design/'
......
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