Skip to content

Commit

Permalink
Fix bug in processing when no remapping is required
Browse files Browse the repository at this point in the history
  • Loading branch information
tcezard committed Dec 9, 2024
1 parent 8ab7cce commit bbd455d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions eva_assembly_ingestion/nextflow/remap_cluster.nf
Original file line number Diff line number Diff line change
Expand Up @@ -354,8 +354,8 @@ workflow {
backpropagate_clusters(qc_clustering.out.clustering_qc_log_filename.collect())
}else{
// We're using params.genome_assembly_dir because cluster_unclustered_variants needs to receive a file object
cluster_unclustered_variants(params.genome_assembly_dir)
qc_clustering(cluster_unclustered_variants.out.rs_report_filename)
cluster_unclustered_variants(params.genome_assembly_dir, source_to_target)
qc_clustering(cluster_unclustered_variants.out.rs_report_filename, source_to_target)
}

}
Expand Down

0 comments on commit bbd455d

Please sign in to comment.