Skip to content

Commit

Permalink
converting string to path for main output used in plot
Browse files Browse the repository at this point in the history
  • Loading branch information
toniher committed Dec 5, 2024
1 parent 5974a7c commit 5fa9398
Showing 1 changed file with 10 additions and 9 deletions.
19 changes: 10 additions & 9 deletions workflows/plot.nf
Original file line number Diff line number Diff line change
Expand Up @@ -154,16 +154,17 @@ workflow PLOT {
}

if (isoformID) {
GET_ISOFORM_EXONS(
isoformID,
GENERATE_FAKE_COORDS_TABLE.out.ExNum_number_in_isoform
.join(SUBSET_INPUT_FILES.out.overlap_info_4_isoforms)
.join(ISOLATE_QUERY_SPECIES.out.query_species),
geneID,
outdir
)
outdir_ch = Channel.fromPath(outdir, checkIfExists: true).collect()
GET_ISOFORM_EXONS(
isoformID,
GENERATE_FAKE_COORDS_TABLE.out.ExNum_number_in_isoform
.join(SUBSET_INPUT_FILES.out.overlap_info_4_isoforms)
.join(ISOLATE_QUERY_SPECIES.out.query_species),
geneID,
outdir_ch
)
} else {
isoform_interesting_exs = Channel.from("None")
isoform_interesting_exs = Channel.from("None")
}
//Rscript to actually make the plot

Expand Down

0 comments on commit 5fa9398

Please sign in to comment.