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
f8219ccf
Commit
f8219ccf
authored
5 years ago
by
Gervaise Henry
Browse files
Options
Downloads
Patches
Plain Diff
Add initial fastqc
parent
a30baa9c
Branches
Branches containing commit
Tags
Tags containing commit
2 merge requests
!37
v0.0.1
,
!18
Resolve "process_fastqc"
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
workflow/conf/biohpc.config
+3
-0
3 additions, 0 deletions
workflow/conf/biohpc.config
workflow/nextflow.config
+3
-0
3 additions, 0 deletions
workflow/nextflow.config
workflow/rna-seq.nf
+32
-3
32 additions, 3 deletions
workflow/rna-seq.nf
with
38 additions
and
3 deletions
workflow/conf/biohpc.config
+
3
−
0
View file @
f8219ccf
...
...
@@ -24,6 +24,9 @@ process {
withName
:
dedupData
{
queue
=
'super'
}
withName
:
fastqc
{
queue
=
'super'
}
}
singularity
{
...
...
This diff is collapsed.
Click to expand it.
workflow/nextflow.config
+
3
−
0
View file @
f8219ccf
...
...
@@ -32,6 +32,9 @@ process {
withName
:
dedupData
{
container
=
'bicf/picard2.21.7:2.0.0'
}
withName
:
fastqc
{
container
=
'bicf/fastqc:2.0.0'
}
}
trace
{
...
...
This diff is collapsed.
Click to expand it.
workflow/rna-seq.nf
+
32
−
3
View file @
f8219ccf
...
...
@@ -105,6 +105,12 @@ process getData {
"""
}
// Split fastq's
fastqs.into {
fastqs_trimData
fastqs_fastqc
}
/*
* parseMetadata: parses metadata to extract experiment parameters
*/
...
...
@@ -239,7 +245,7 @@ process trimData {
input:
val endsManual_trimData
path (fastq) from fastqs
path (fastq) from fastqs
_trimData
output:
path ("*.fq.gz") into fastqs_trimmed
...
...
@@ -303,7 +309,7 @@ process alignData {
}
/*
*dedup
Reads
: mark the duplicate reads, specifically focused on PCR or optical duplicates
*dedup
Data
: mark the duplicate reads, specifically focused on PCR or optical duplicates
*/
process dedupData {
tag "${repRID}"
...
...
@@ -323,7 +329,30 @@ process dedupData {
hostname >${repRID}.dedup.err
ulimit -a >>${repRID}.dedup.err
#
R
emove duplicated reads
#
r
emove duplicated reads
java -jar /picard/build/libs/picard.jar MarkDuplicates I=${rawBam} O=${repRID}.deduped.bam M=${repRID}.deduped.Metrics.txt REMOVE_DUPLICATES=true 1>>${repRID}.dedup.out 2>> ${repRID}.dedup.err
"""
}
/*
*fastqc: run fastqc on untrimmed fastq's
*/
process fastqc {
tag "${repRID}"
publishDir "${logsDir}", mode: 'copy', pattern: "*.fastq.err"
input:
path (fastq) from fastqs_fastqc
output:
path ("*_fastqc.zip") into fastqc
script:
"""
hostname >${repRID}.fastqc.err
ulimit -a >>${repRID}.fastqc.err
# run fastqc
fastqc *.fastq.gz >>${repRID}.fastqc.err
"""
}
\ No newline at end of file
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