Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
nextflow
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
LBMC
ReGArDS
nextflow
Commits
98be5c90
Commit
98be5c90
authored
Jun 17, 2022
by
Xavier Grand
Browse files
Options
Downloads
Patches
Plain Diff
Arriba & star nf dvpt
parent
9440fb30
No related branches found
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/arriba_fusion.nf
+21
-0
21 additions, 0 deletions
src/arriba_fusion.nf
src/star_fusion.nf
+3
-2
3 additions, 2 deletions
src/star_fusion.nf
with
24 additions
and
2 deletions
src/arriba_fusion.nf
+
21
−
0
View file @
98be5c90
...
...
@@ -112,6 +112,10 @@ Channel
****************************************************************
*/
include
{
fastp
}
from
'./nf_modules/fastp/main.nf'
include
{
fastqc_fastq
as
fastqc_raw
}
from
fastqc_mod
addParams
(
fastqc_fastq_out:
"$params.project/01_fastqc_raw/"
)
include
{
fastqc_fastq
as
fastqc_preprocessed
}
from
fastqc_mod
addParams
(
fastqc_fastq_out:
"$params.project/02_fastqc_preprocessed/"
)
include
{
multiqc
}
from
'./nf_modules/multiqc/main.nf'
addParams
(
multiqc_out:
"$params.project/QC/"
)
include
{
arriba
}
from
"./nf_modules/arriba/main.nf"
/*
...
...
@@ -122,6 +126,23 @@ include { arriba } from "./nf_modules/arriba/main.nf"
workflow
{
if
(
params
.
bam
==
""
){
fastp
()
fastqc_raw
()
fastqc_preprocessed
()
multiqc
()
.
mix
(
fastqc_preprocessed
.
out
.
report
).
collect
()
index_fasta
()
mapping_fastq
()
filter_bam_quality
()
sort_bam
()
index_bam
()
}
//###################### ARRIBA FUSION ########################
arriba
(
fastq_files
,
gtf
,
genome
)
...
...
This diff is collapsed.
Click to expand it.
src/star_fusion.nf
+
3
−
2
View file @
98be5c90
...
...
@@ -25,7 +25,8 @@ def helpMessage() {
nextflow ./src/star_fusion.nf -c ./src/nextflow.config -profile singularity
Mandatory arguments:
--project [path] Path to the project folder containing fastq folder. Results are saved in this folder.
--project [path] Path to the project folder. Results are saved in this folder.
--fastq [path] Path to fastq folder.
-profile [str] Configuration profile to use.
Available: docker, singularity, podman, psmn, ccin2p3
...
...
@@ -57,7 +58,7 @@ if (params.help || params.h) {
*/
params
.
project
=
""
params
.
fastq
=
"${
params.
project}/fastq"
params
.
fastq
=
"${project}/fastq
/*R{1,2}.fastq.gz
"
/*
if (params.genome) { params.genome = path(params.genome, checkIfExists: true) } else { exit 1, "No genome specified." }
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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