Skip to content

Commit

Permalink
feat: Use all possible combinations for alignment
Browse files Browse the repository at this point in the history
  • Loading branch information
jvfe committed Jun 15, 2023
1 parent 57d3fd2 commit e09297f
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions gene_order.nf
Original file line number Diff line number Diff line change
Expand Up @@ -52,19 +52,25 @@ workflow {
}
.set { assembly_channel }

assembly_channel
.combine(dbs)
.set { all_combs }

DIAMOND_BLASTP (
assembly_channel,
dbs,
all_combs.map{meta, fasta, db -> tuple(meta, fasta)},
all_combs.map{meta, fasta, db -> db},
"txt",
blast_columns
)

DIAMOND_BLASTP.out.txt.collect{id, path -> path}.set { blastFiles }

// CLUSTERING (
// blastFiles,
// file(params.assembly_path),
// assemblyFiles.collect(),
// EXTRACTION.out.fasta_path,
// blastFiles,
// EXTRACTION.out.json_path,
// EXTRACTION.out.neighborhood_indices,
// num_neighbors,
// inflation,
// epsilon,
Expand Down

0 comments on commit e09297f

Please sign in to comment.