Skip to content

Commit

Permalink
add imscores to main pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
dimalvovs committed Sep 5, 2024
1 parent 75a24ce commit 6591cf2
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions main.nf
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
nextflow.enable.dsl=2

include { PREPROCESS } from './modules/local/preprocess.nf'
include { SPACEMARKERS } from './modules/local/spacemarkers.nf'
include { COGAPS } from './modules/local/cogaps.nf'
include { SPACEMARKERS_MQC } from './modules/local/spacemarkers.nf'


include { SPACEMARKERS;
SPACEMARKERS_MQC;
SPACEMARKERS_IMSCORES } from './modules/local/spacemarkers.nf'

workflow COSPACE {

Expand All @@ -26,6 +25,9 @@ workflow COSPACE {
ch_spacemarkers_mqc = SPACEMARKERS.out.spaceMarkers.map { tuple(it[0], it[1]) }
SPACEMARKERS_MQC(ch_spacemarkers_mqc)

ch_spacemarkers_imscores = SPACEMARKERS.out.spaceMarkers.map { tuple(it[0], it[1]) }
SPACEMARKERS_IMSCORES(ch_spacemarkers_imscores)

emit:
dgCMatrix = PREPROCESS.out.dgCMatrix
cogapsResult = COGAPS.out.cogapsResult
Expand Down

0 comments on commit 6591cf2

Please sign in to comment.