Skip to content

Commit

Permalink
refactor: Remove phispy info from report (#128)
Browse files Browse the repository at this point in the history
* refactor: Remove phispy info from report

* fix: Add concatenated core_genome to output

* fix: Remove duplicated import
  • Loading branch information
jvfe committed Jun 13, 2023
1 parent d78dfc9 commit 82bb3f8
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
8 changes: 8 additions & 0 deletions conf/modules.config
Original file line number Diff line number Diff line change
Expand Up @@ -367,6 +367,14 @@ process {
]
}

withName: CONCAT_ALIGNMENT {
publishDir = [
path: { "${params.outdir}/pangenomics/ppanggolin" },
mode: params.publish_dir_mode,
saveAs: { filename -> filename.equals('core_gene_alignment.aln') ? filename : null }
]
}

// phylogenomics
withName: IQTREE {
publishDir = [
Expand Down
2 changes: 0 additions & 2 deletions subworkflows/local/annotation.nf
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ include { RGI;
include { MOB_RECON } from '../../modules/local/mobsuite'
include { ISLANDPATH } from '../../modules/local/islandpath/main'
include { PHISPY } from '../../modules/nf-core/phispy/main'
include { PHISPY } from '../../modules/nf-core/phispy/main'
include { INTEGRON_FINDER } from '../../modules/local/integronfinder/main.nf'
include { CONCAT_OUTPUT as CONCAT_PROKKA;
CONCAT_OUTPUT as CONCAT_BAKTA;
Expand Down Expand Up @@ -239,7 +238,6 @@ workflow ANNOTATE_ASSEMBLIES {
.set { phispy_tsvs }

CONCAT_PHISPY(phispy_tsvs, "PHISPY", 1)
CONCAT_PHISPY.out.txt.set{ ch_phispy_out }
}

ISLANDPATH(ch_gbk_files)
Expand Down

0 comments on commit 82bb3f8

Please sign in to comment.