Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
chipseq_analysis
Manage
Activity
Members
Labels
Plan
Issues
19
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
3
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container Registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
BICF
Astrocyte
chipseq_analysis
Commits
82a4e5a5
There was a problem fetching the pipeline stages.
Commit
82a4e5a5
authored
6 years ago
by
Venkat Malladi
Browse files
Options
Downloads
Patches
Plain Diff
Fix tests.
parent
ec22feba
Branches
Branches containing commit
Tags
Tags containing commit
1 merge request
!21
Resolve "skip motif search and diff bind"
Pipeline
#3233
canceled with stages
in 7 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.gitlab-ci.yml
+2
-2
2 additions, 2 deletions
.gitlab-ci.yml
workflow/tests/test_diff_peaks.py
+4
-5
4 additions, 5 deletions
workflow/tests/test_diff_peaks.py
with
6 additions
and
7 deletions
.gitlab-ci.yml
+
2
−
2
View file @
82a4e5a5
...
...
@@ -48,7 +48,7 @@ single_end_diff:
-
master
script
:
-
nextflow run workflow/main.nf --designFile "$CI_PROJECT_DIR/test_data/design_diff_SE.txt" --genome 'GRCm38' -resume
-
pytest -m singlediff
singlediff_true
-
pytest -m singlediff
artifacts
:
expire_in
:
2 days
...
...
@@ -72,6 +72,6 @@ single_end_skip:
-
master
script
:
-
nextflow run workflow/main.nf --designFile "$CI_PROJECT_DIR/test_data/design_diff_SE.txt" --genome 'GRCm38' --skipDiff
true
--skipMotif
true
-resume
-
pytest -m
singlediff
singleskip_true
-
pytest -m singleskip_true
artifacts
:
expire_in
:
2 days
This diff is collapsed.
Click to expand it.
workflow/tests/test_diff_peaks.py
+
4
−
5
View file @
82a4e5a5
...
...
@@ -10,7 +10,6 @@ test_output_path = os.path.dirname(os.path.abspath(__file__)) + \
'
/../output/diffPeaks/
'
@pytest.mark.singleend
@pytest.mark.singleskip_true
def
test_diff_peaks_singleend_single_rep
():
assert
os
.
path
.
isdir
(
test_output_path
)
==
False
...
...
@@ -21,22 +20,22 @@ def test_diff_peaks_pairedend_single_rep():
assert
os
.
path
.
isdir
(
test_output_path
)
==
False
@pytest.mark.singlediff
_true
@pytest.mark.singlediff
def
test_heatmap_singleend_multiple_rep
():
assert
os
.
path
.
exists
(
os
.
path
.
join
(
test_output_path
,
'
heatmap.pdf
'
))
@pytest.mark.singlediff
_true
@pytest.mark.singlediff
def
test_pca_singleend_multiple_rep
():
assert
os
.
path
.
exists
(
os
.
path
.
join
(
test_output_path
,
'
pca.pdf
'
))
@pytest.mark.singlediff
_true
@pytest.mark.singlediff
def
test_normcount_singleend_multiple_rep
():
assert
os
.
path
.
exists
(
os
.
path
.
join
(
test_output_path
,
'
normcount_peaksets.txt
'
))
@pytest.mark.singlediff
_true
@pytest.mark.singlediff
def
test_diffbind_singleend_multiple_rep
():
if
os
.
path
.
isfile
(
os
.
path
.
join
(
test_output_path
,
'
ENCSR272GNQ_vs_ENCSR238SGC_diffbind.bed
'
)):
assert
os
.
path
.
exists
(
os
.
path
.
join
(
test_output_path
,
'
ENCSR272GNQ_vs_ENCSR238SGC_diffbind.bed
'
))
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment