Skip to content

Commit

Permalink
moving on
Browse files Browse the repository at this point in the history
  • Loading branch information
toniher committed Oct 21, 2024
1 parent 166ea27 commit 9c74274
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
3 changes: 2 additions & 1 deletion modules/local/exorthist/plot/get_exons.nf
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
process GET_ISOFORM_EXONS {
tag "${isoformID}"
label 'pandas'
publishDir "${params.output}/${params.geneID}/processed_table", mode: 'copy'
publishDir "${params.output}/${geneID}/processed_table", mode: 'copy'

input:
val(isoformID)
tuple val(species), path(exons_info), path(overlap_info)
val(geneID)

output:
stdout emit: isoform_interesting_exs
Expand Down
1 change: 0 additions & 1 deletion modules/local/exorthist/plot/plot.nf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ process PLOT_EXINT {
label 'rscript'
// containerOptions '-B $PWD:/tmp' # TODO: To consider if this should be moved to nextflow.config
publishDir "${params.output_plot}", mode: 'copy'
//publishDir "${params.output}/${params.geneID}", mode: 'copy'

input:
val(my_geneID)
Expand Down
3 changes: 2 additions & 1 deletion nextflow_schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,8 @@
},
"prevaln": {
"type": "string",
"description": "Pre-computed alignments"
"description": "Pre-computed alignments",
"format": "directory-path"
},
"alignmentnum": {
"type": "integer",
Expand Down
3 changes: 2 additions & 1 deletion workflows/plot.nf
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,8 @@ workflow PLOT {
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
)
} else {
isoform_interesting_exs = Channel.from("None")
}
Expand Down

0 comments on commit 9c74274

Please sign in to comment.