Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
RNA-seq
Manage
Activity
Members
Labels
Plan
Issues
12
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
GUDMAP_RBK
RNA-seq
Commits
529dadea
Commit
529dadea
authored
5 years ago
by
Gervaise Henry
Browse files
Options
Downloads
Patches
Plain Diff
Cleanup some ci misses
parent
f49af45e
Branches
Branches containing commit
Tags
Tags containing commit
2 merge requests
!37
v0.0.1
,
!16
Resolve "process_getRef"
Pipeline
#5856
failed with stages
in 25 minutes and 41 seconds
Changes
4
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
.gitignore
+1
-1
1 addition, 1 deletion
.gitignore
.gitlab-ci.yml
+1
-1
1 addition, 1 deletion
.gitlab-ci.yml
workflow/rna-seq.nf
+1
-2
1 addition, 2 deletions
workflow/rna-seq.nf
workflow/tests/test_alignReads.py
+8
-10
8 additions, 10 deletions
workflow/tests/test_alignReads.py
with
11 additions
and
14 deletions
.gitignore
+
1
−
1
View file @
529dadea
...
...
@@ -298,4 +298,4 @@ timeline*.html*
*.out
run*.sh
!.gitkeep
!.gitkeep
\ No newline at end of file
This diff is collapsed.
Click to expand it.
.gitlab-ci.yml
+
1
−
1
View file @
529dadea
...
...
@@ -51,7 +51,7 @@ trimData:
alignData
:
stage
:
unit
script
:
-
singularity run 'docker://bicf/gudmaprbkaligner:2.0.0' hisat2 -p `nproc` --add-chrname --un-gz Q-Y5JA_1M.se.unal.gz -S Q-Y5JA_1M.se.sam -x /project/BICF/BICF_Core/shared/gudmap/references/GRCh38.p12/hisat2/genome --rna-strandness F
R
-U ./test_data/fastq/small/Q-Y5JA_1M_trimmed.fq.gz
-
singularity run 'docker://bicf/gudmaprbkaligner:2.0.0' hisat2 -p `nproc` --add-chrname --un-gz Q-Y5JA_1M.se.unal.gz -S Q-Y5JA_1M.se.sam -x /project/BICF/BICF_Core/shared/gudmap/references/GRCh38.p12/hisat2/genome --rna-strandness F -U ./test_data/fastq/small/Q-Y5JA_1M_trimmed.fq.gz
-
singularity run 'docker://bicf/gudmaprbkaligner:2.0.0' samtools view -1 -@ `nproc` -F 4 -F 8 -F 256 -o Q-Y5JA_1M.se.bam Q-Y5JA_1M.se.sam
-
singularity run 'docker://bicf/gudmaprbkaligner:2.0.0' samtools sort -@ `nproc` -O BAM -o Q-Y5JA_1M.se.sorted.bam Q-Y5JA_1M.se.bam
-
singularity run 'docker://bicf/gudmaprbkaligner:2.0.0' samtools index -@ `nproc` -b Q-Y5JA_1M.se.sorted.bam Q-Y5JA_1M.se.sorted.bai
...
...
This diff is collapsed.
Click to expand it.
workflow/rna-seq.nf
+
1
−
2
View file @
529dadea
...
...
@@ -234,7 +234,7 @@ process getRef {
*/
process trimData {
tag "${repRID}"
publishDir "${logsDir}", mode: "copy", pattern: "
${repRID}
.trimData.*"
publishDir "${logsDir}", mode: "copy", pattern: "
*
.trimData.*"
input:
val endsManual_trimData
...
...
@@ -266,7 +266,6 @@ process trimData {
*/
process alignData {
tag "${repRID}"
publishDir "${outDir}/alignData", mode: "copy", pattern: "*.{bam,bai}"
publishDir "${logsDir}", mode: "copy", pattern: "*.align.{out,err}"
input:
...
...
This diff is collapsed.
Click to expand it.
workflow/tests/test_alignReads.py
+
8
−
10
View file @
529dadea
...
...
@@ -7,8 +7,6 @@ import utils
data_output_path
=
os
.
path
.
dirname
(
os
.
path
.
abspath
(
__file__
))
+
\
'
/../../
'
logs_output_path
=
os
.
path
.
dirname
(
os
.
path
.
abspath
(
__file__
))
+
\
'
/../../
'
@pytest.mark.alignData
...
...
@@ -27,15 +25,15 @@ def test_alignData_pe():
@pytest.mark.alignLogs
def
test_alignLogs_se
():
assert
os
.
path
.
exists
(
os
.
path
.
join
(
logs
_output_path
,
'
16-1ZX4.align.err
'
))
assert
'
34497376 reads; of these:
'
in
open
(
os
.
path
.
join
(
logs
_output_path
,
'
16-1ZX4.align.err
'
)).
readlines
()[
0
]
assert
os
.
path
.
exists
(
os
.
path
.
join
(
logs
_output_path
,
'
16-1ZX4.align.out
'
))
assert
os
.
path
.
exists
(
os
.
path
.
join
(
data
_output_path
,
'
16-1ZX4.align.err
'
))
assert
'
34497376 reads; of these:
'
in
open
(
os
.
path
.
join
(
data
_output_path
,
'
16-1ZX4.align.err
'
)).
readlines
()[
0
]
assert
os
.
path
.
exists
(
os
.
path
.
join
(
data
_output_path
,
'
16-1ZX4.align.out
'
))
@pytest.mark.alignLogs
def
test_alignLogs_pe
():
assert
os
.
path
.
exists
(
os
.
path
.
join
(
logs
_output_path
,
'
Q-Y5JA.align.err
'
))
assert
utils
.
count_lines
(
os
.
path
.
join
(
logs
_output_path
,
'
Q-Y5JA.align.err
'
))
==
7
assert
'
15824858 reads; of these:
'
in
open
(
os
.
path
.
join
(
logs
_output_path
,
'
Q-Y5JA.align.err
'
)).
readlines
()[
0
]
assert
os
.
path
.
exists
(
os
.
path
.
join
(
logs
_output_path
,
'
Q-Y5JA.align.out
'
))
assert
utils
.
count_lines
(
os
.
path
.
join
(
logs
_output_path
,
'
Q-Y5JA.align.out
'
))
==
0
assert
os
.
path
.
exists
(
os
.
path
.
join
(
data
_output_path
,
'
Q-Y5JA.align.err
'
))
assert
utils
.
count_lines
(
os
.
path
.
join
(
data
_output_path
,
'
Q-Y5JA.align.err
'
))
==
7
assert
'
15824858 reads; of these:
'
in
open
(
os
.
path
.
join
(
data
_output_path
,
'
Q-Y5JA.align.err
'
)).
readlines
()[
0
]
assert
os
.
path
.
exists
(
os
.
path
.
join
(
data
_output_path
,
'
Q-Y5JA.align.out
'
))
assert
utils
.
count_lines
(
os
.
path
.
join
(
data
_output_path
,
'
Q-Y5JA.align.out
'
))
==
0
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