Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- name: Setup Nextflow
uses: nf-core/setup-nextflow@v1
with:
version: "latest-edge"
version: "25.10.0"

- name: Install nf-test
run: |
Expand Down
5 changes: 2 additions & 3 deletions modules/local/compression/compression_encryption_vcf.nf
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,11 @@ process COMPRESSION_ENCRYPTION_VCF {
bcftools concat --threads ${task.cpus} -n ${info_joined} -o ${info_name} -Oz

# concat dosage files and update header
bcftools concat --threads ${task.cpus} -n ${imputed_joined} -o intermediate_${imputed_name} -Oz
echo "##mis_pipeline=${workflow.manifest.version}" > add_header.txt
echo "##mis_phasing=${params.phasing.engine}" >> add_header.txt
echo "##mis_panel=${panel_version}" >> add_header.txt
bcftools annotate --threads ${task.cpus} -h add_header.txt intermediate_${imputed_name} -o ${imputed_name} -Oz
rm intermediate_${imputed_name}
bcftools concat --threads ${task.cpus} -n ${imputed_joined} -Oz | \
bcftools annotate --threads ${task.cpus} -h add_header.txt -Oz -o ${imputed_name}

# write meta files
if [[ "${params.imputation.meta}" = true ]]
Expand Down