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

Fix references to libraries.

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