Skip to content

Commit c34646d

Browse files
author
jasmine-amir
committed
PacBio HiFi specific reference alignment index added for Minimap2
1 parent 9b39072 commit c34646d

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

covidRefSequences/PacBioHiFi.mmi

190 KB
Binary file not shown.

nextflow.config

+2-1
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,10 @@ process {
6060
}
6161

6262
withName: 'freyjaVariantCaller' {
63-
time = '2 h'
63+
time = '3 h'
6464
maxForks = 20
6565
cpus = 15
66+
// cpus = 20
6667
memory = '24 GB'
6768
}
6869

startWorkflow.nf

+1-1
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ process referenceAlignment {
152152
minimap2 -a --sam-hit-only -2 -x map-ont ${refSeqBasename}.mmi R1.fastq.gz -t \$numThreads -o aligned.sam
153153
;;
154154
PacBio)
155-
minimap2 -a --sam-hit-only -2 -x map-hifi ${refSeqBasename}.mmi R1.fastq.gz -t \$numThreads -o aligned.sam
155+
minimap2 -a --sam-hit-only -2 -x map-hifi $projectDir/covidRefSequences/PacBioHiFi.mmi R1.fastq.gz -t \$numThreads -o aligned.sam
156156
;;
157157
esac
158158
"""

0 commit comments

Comments
 (0)