-
Notifications
You must be signed in to change notification settings - Fork 169
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Release v2.4.0 #256
Release v2.4.0 #256
Conversation
See if this fixes the CI issue
…-multiqc fix (231): Null object accessed in multiqc channel
…llranger Fix_file_collision_when_using_cellranger
Update public_aws_ecr.config
Add singularity.registry = 'quay.io' and bump NF version to 23.04.0
Remove public_aws_ecr profile
Important! Template update for nf-core/tools v2.9
Update cellranger module
…tting Remove duplicate registry settings in nextflow.config
Add cellranger to multiqc report
fix typo causing empty version imformation for mtx_conversion subwork…
Bump version for release
|
There is a missing |
Also, there is a missing support if the experiment is single-read for StarSolo. Here is my quick fix solution starting from here // separate forward from reverse pairs
def (forward, reverse) = reads.collate(2).transpose()
if (meta.single_end) {
forward = ''
reverse = reads.join( "," )
} else {
reverse = reverse.join( "," )
forward = forward.join( "," )
}
"""
STAR \\
--genomeDir $index \\
--readFilesIn $reverse $forward \\
--runThreadN $task.cpus \\
--outFileNamePrefix $prefix. \\
--soloCBwhitelist <(gzip -cdf $whitelist) \\
--soloType $protocol \\
--soloFeatures $star_feature \\
$other_10x_parameters \\
$out_sam_type \\
$ignore_gtf \\
$seq_center \\
$cell_filter \\
$args \\ |
Hi @matq007, smart-seq is not a multiplexed experiment, you can process it with the |
I see, got it! |
It seems that all is there. |
remove validationSchemaIgnoreParams warning with test profile
PR checklist
nf-core lint
).nextflow run . -profile test,docker --outdir <OUTDIR>
).docs/usage.md
is updated.docs/output.md
is updated.CHANGELOG.md
is updated.README.md
is updated (including new tool citations and authors/contributors).