Skip to content

Commit

Permalink
refactor: Make it fit my eye
Browse files Browse the repository at this point in the history
  • Loading branch information
edmundmiller committed Jul 29, 2024
1 parent 15e4a83 commit 12b3b0b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ include { primer3_calc } from "./modules/primer3_calc/"
include { primer3_results2fasta } from "./modules/primer3_results2fasta/"

workflow {
ref = Channel.fromPath(params.fasta)
seq = Channel.of(params.targetseq)
ref = Channel.fromPath(params.fasta)
seq.view()
seqkit_fetch_target(seq,ref)
target = seqkit_fetch_target.out.fasta

primer3_conf(ref,target)
primer3_conf(target,ref)
primer3_index(ref)
primer3_calc(primer3_conf.out,primer3_index.out)
primer3_results2fasta(primer3_calc.out)
Expand Down
2 changes: 1 addition & 1 deletion modules/primer3_conf/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ process primer3_conf {
tag "$fasta"

input:
path fasta
path target
path fasta

output:
path "custom_primer3.conf"
Expand Down

0 comments on commit 12b3b0b

Please sign in to comment.