Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
cellranger_count
Manage
Activity
Members
Labels
Plan
Issues
11
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
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
cellranger_count
Commits
0eacd554
Commit
0eacd554
authored
5 years ago
by
Gervaise Henry
1
Browse files
Options
Downloads
Patches
Plain Diff
Remove unnecessary intermediate outputs from publish and remove unit tests for them
parent
2c696901
Branches
Branches containing commit
Tags
Tags containing commit
1 merge request
!63
Develop
Pipeline
#5113
passed with stages
in 4 hours, 11 minutes, and 5 seconds
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
workflow/main.nf
+1
-3
1 addition, 3 deletions
workflow/main.nf
workflow/tests/test_check_design.py
+0
-31
0 additions, 31 deletions
workflow/tests/test_check_design.py
workflow/tests/test_versions.py
+0
-35
0 additions, 35 deletions
workflow/tests/test_versions.py
with
1 addition
and
69 deletions
workflow/main.nf
+
1
−
3
View file @
0eacd554
...
...
@@ -73,7 +73,6 @@ references = params.references
process checkDesignFile {
tag "${name}"
publishDir "${outDir}/misc/${task.process}/${name}", mode: 'copy'
module 'python/3.6.1-2-anaconda'
input:
...
...
@@ -309,7 +308,6 @@ process count310 {
process versions {
tag "${name}"
publishDir "${outDir}/misc/${task.process}/${name}", mode: 'copy'
module 'python/3.6.1-2-anaconda:pandoc/2.7:multiqc/1.7'
input:
...
...
@@ -357,4 +355,4 @@ process multiqc {
multiqc -c ${multiqcConf} .
"""
}
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
workflow/tests/test_check_design.py
deleted
100644 → 0
+
0
−
31
View file @
2c696901
#!/usr/bin/env python3
#test_check_design.py
#*
#* --------------------------------------------------------------------------
#* Licensed under MIT (https://git.biohpc.swmed.edu/BICF/Astrocyte/cellranger_count/blob/develop/LICENSE)
#* --------------------------------------------------------------------------
#*
import
pytest
import
pandas
as
pd
from
io
import
StringIO
import
os
test_output_path
=
os
.
path
.
dirname
(
os
.
path
.
abspath
(
__file__
))
+
\
'
/../output/misc/checkDesignFile/run/
'
@pytest.mark.count211
def
test_count211_design
():
assert
os
.
path
.
exists
(
os
.
path
.
join
(
test_output_path
,
'
design.checked.csv
'
))
@pytest.mark.count301
def
test_count301_design
():
assert
os
.
path
.
exists
(
os
.
path
.
join
(
test_output_path
,
'
design.checked.csv
'
))
@pytest.mark.count302
def
test_count302_design
():
assert
os
.
path
.
exists
(
os
.
path
.
join
(
test_output_path
,
'
design.checked.csv
'
))
@pytest.mark.count310
def
test_count310_design
():
assert
os
.
path
.
exists
(
os
.
path
.
join
(
test_output_path
,
'
design.checked.csv
'
))
\ No newline at end of file
This diff is collapsed.
Click to expand it.
workflow/tests/test_versions.py
deleted
100644 → 0
+
0
−
35
View file @
2c696901
#!/usr/bin/env python3
#test_versions.py
#*
#* --------------------------------------------------------------------------
#* Licensed under MIT (https://git.biohpc.swmed.edu/BICF/Astrocyte/cellranger_count/blob/develop/LICENSE)
#* --------------------------------------------------------------------------
#*
import
pytest
import
pandas
as
pd
from
io
import
StringIO
import
os
test_output_path
=
os
.
path
.
dirname
(
os
.
path
.
abspath
(
__file__
))
+
\
'
/../output/misc/versions/run/
'
@pytest.mark.count211
def
test_count211_versions
():
assert
os
.
path
.
exists
(
os
.
path
.
join
(
test_output_path
,
'
versions_mqc.yaml
'
))
assert
os
.
path
.
exists
(
os
.
path
.
join
(
test_output_path
,
'
references_mqc.yaml
'
))
@pytest.mark.count301
def
test_count301_versions
():
assert
os
.
path
.
exists
(
os
.
path
.
join
(
test_output_path
,
'
versions_mqc.yaml
'
))
assert
os
.
path
.
exists
(
os
.
path
.
join
(
test_output_path
,
'
references_mqc.yaml
'
))
@pytest.mark.count302
def
test_count302_versions
():
assert
os
.
path
.
exists
(
os
.
path
.
join
(
test_output_path
,
'
versions_mqc.yaml
'
))
assert
os
.
path
.
exists
(
os
.
path
.
join
(
test_output_path
,
'
references_mqc.yaml
'
))
@pytest.mark.count310
def
test_count310_versions
():
assert
os
.
path
.
exists
(
os
.
path
.
join
(
test_output_path
,
'
versions_mqc.yaml
'
))
assert
os
.
path
.
exists
(
os
.
path
.
join
(
test_output_path
,
'
references_mqc.yaml
'
))
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Gervaise Henry
@ghenry
·
5 years ago
Author
Maintainer
Analogous to
cellranger_mkfastq#35 (closed)
Analogous to cellranger_mkfastq#35
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