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
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
LBMC
nextflow
Commits
25be4607
Unverified
Commit
25be4607
authored
6 years ago
by
Laurent Modolo
Browse files
Options
Downloads
Patches
Plain Diff
SNP_calling: test with Bowtie2
parent
c9fc9da5
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!10
Module for BWA GATK sambamba samblaster and bcftools
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/1_JU28_59vs17_SNP_calling.sh
+1
-1
1 addition, 1 deletion
src/1_JU28_59vs17_SNP_calling.sh
src/SNP_calling.config
+2
-5
2 additions, 5 deletions
src/SNP_calling.config
src/SNP_calling.nf
+30
-36
30 additions, 36 deletions
src/SNP_calling.nf
with
33 additions
and
42 deletions
src/1_JU28_59vs17_SNP_calling.sh
+
1
−
1
View file @
25be4607
...
...
@@ -11,7 +11,7 @@ cd ~/projects/JU28_59vs17_SNP/
# training set analysis
./nextflow src/SNP_calling.nf
-c
src/SNP_calling.config
-profile
docker
--fasta
"data/fasta/DBG2OLC-output2.fasta"
--fastq
"data/samples/*_{1,2}.fastq.gz"
-resume
-w
~/data/work/
--tumor
"[
\"
NG-10944_JU2859_bis_lib169352_5217_1
\"
]"
--normal
"[
\"
MR_550_clean
\"
,
\"
MR_350_clean
\"
]"
./nextflow src/SNP_calling.nf
-c
src/SNP_calling.config
-profile
docker
--fasta
"data/fasta/DBG2OLC-output2.fasta"
--fastq
"data/samples/*_{1,2}.fastq.gz"
-resume
-w
~/data/work
_s
/
--tumor
"[
\"
s_
NG-10944_JU2859_bis_lib169352_5217_1
\"
]"
--normal
"[
\"
s_
MR_550_clean
\"
,
\"
s_
MR_350_clean
\"
]"
~/scripts/sms.sh
"SNP done"
# real set analysis
...
...
This diff is collapsed.
Click to expand it.
src/SNP_calling.config
+
2
−
5
View file @
25be4607
...
...
@@ -10,10 +10,10 @@ profiles {
container
=
"urqt:d62c1f8"
}
withName
:
index_fasta
{
container
=
"b
wa:0.7
.1
7
"
container
=
"b
owtie2:2.3.4
.1"
}
withName
:
mapping_fastq
{
container
=
"b
wa:0.7
.1
7
"
container
=
"b
owtie2:2.3.4
.1"
}
withName
:
merge_bam
{
container
=
"sambamba:0.6.7"
...
...
@@ -21,9 +21,6 @@ profiles {
withName
:
sort_bam
{
container
=
"sambamba:0.6.7"
}
withName
:
name_fasta
{
container
=
"samtools:1.7"
}
withName
:
index_bam
{
container
=
"sambamba:0.6.7"
}
...
...
This diff is collapsed.
Click to expand it.
src/SNP_calling.nf
+
30
−
36
View file @
25be4607
...
...
@@ -62,62 +62,56 @@ UrQt --t 20 --m ${task.cpus} --gz \
}
process
index_fasta
{
tag
"$f
asta
_id"
tag
"$f
ile
_id"
cpus
4
publishDir
"results/mapping/index/"
,
mode:
'copy'
input:
set
f
asta
_id
,
file
(
fasta
)
from
fasta_file
set
f
ile
_id
,
file
(
fasta
)
from
fasta_file
output:
set
fasta_id
,
"${fasta.baseName}.
*"
into
index_files
file
"*_
bwa_
report.txt"
into
index
_files
_report
file
"*.index
*"
into
index_files
file
"*_report.txt"
into
index
ing
_report
script:
"""
bwa index -p ${fasta_id} ${fasta} \
&> ${fasta.baseName}_bwa_report.txt
"""
}
bowtie2-build --threads ${task.cpus} ${fasta} ${file_id}.index &> ${file_id}_bowtie2_report.txt
fastq_files_trim
.
into
{
fastq_files_trim_norm
;
fastq_files_trim_tumor
if grep -q "Error" ${file_id}_bowtie2_report.txt; then
exit 1
fi
"""
}
collect_fastq_files_trim_norm
=
fastq_files_trim_norm
.
filter
{
normal_sample
.
contains
(
it
[
0
])
}
.
map
{
it
->
[
"normal_sample"
,
it
[
0
],
it
[
1
]]}
collect_fastq_files_trim_tumor
=
fastq_files_trim_tumor
.
filter
{
tumor_sample
.
contains
(
it
[
0
])
}
.
map
{
it
->
[
"tumor_sample"
,
it
[
0
],
it
[
1
]]}
collect_fastq_files_trim
=
Channel
.
create
()
.
mix
(
collect_fastq_files_trim_norm
,
collect_fastq_files_trim_tumor
)
process
mapping_fastq
{
tag
"$pair_id"
cpus
6
publishDir
"results/mapping/bam/"
,
mode:
'copy'
cpus
4
publishDir
"results/mapping/bam
s
/"
,
mode:
'copy'
input:
set
sample_name
,
pair_id
,
file
(
reads
)
from
collect_
fastq_files_trim
set
index_id
,
file
(
index
)
from
index_files
.
collect
()
set
pair_id
,
file
(
reads
)
from
fastq_files_trim
file
index
from
index_files
.
collect
()
output:
set
pair_id
,
"
${pair_id}
.bam"
into
bam_files
file
"
${pair_id}_bwa
_report.txt"
into
mapping_rep
p
ort
_files
set
pair_id
,
"
*
.bam"
into
bam_files
file
"
*
_report.txt"
into
mapping_report
script:
index_id
=
index
[
0
]
for
(
index_file
in
index
)
{
if
(
index_file
=~
/.*\.1\.bt2/
&&
!(
index_file
=~
/.*\.rev\.1\.bt2/
))
{
index_id
=
(
index_file
=~
/(.*)\.1\.bt2/
)[
0
][
1
]
}
}
"""
bwa mem -t ${task.cpus} -M \
-R '@RG\\tID:${sample_name}\\tSM:${sample_name}\\tPL:Illumina' \
${index_id} ${reads[0]} ${reads[1]} | \
samblaster --addMateTags -M -i /dev/stdin | \
sambamba view -t ${task.cpus} --valid -S -f bam -l 0 /dev/stdin -o ${pair_id}.bam \
2> ${pair_id}_bwa_report.txt
bowtie2 --very-sensitive -p ${task.cpus} -x ${index_id} \
-1 ${reads[0]} -2 ${reads[1]} 2> \
${pair_id}_bowtie2_report.txt | \
samtools view -Sb - > ${pair_id}.bam
if grep -q "Error" ${pair_id}_bowtie2_report.txt; then
exit 1
fi
"""
}
...
...
@@ -192,7 +186,7 @@ process index_bam {
set
file_id
,
file
(
bam
)
from
index_merged_bam_files
output:
set
file_id
,
"*.bam
*
"
into
index_bam_files
set
file_id
,
"*.bam
.bai
"
into
index_bam_files
script:
"""
...
...
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