-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdashboard_pipeline_HASHING.nf
46 lines (41 loc) · 1.09 KB
/
dashboard_pipeline_HASHING.nf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
nextflow.enable.dsl=2
include { createDashboard_HASHING } from './processes/dashboard_HASHING.nf'
workflow dashboard_pipeline_HASHING {
take:
guide_seqSpecCheck_plots
guide_position_table
hashing_seqSpecCheck_plots
hashing_position_table
concat_anndata_rna
filtered_anndata_rna
ks_transcripts_out_dir_collected
concat_anndata_guide
ks_guide_out_dir_collected
concat_anndata_hashing
ks_hashing_out_dir_collected
adata_demux
mdata
figures_dir
evaluation_output_dir
main:
createDashboard_HASHING(
guide_seqSpecCheck_plots,
guide_position_table,
hashing_seqSpecCheck_plots,
hashing_position_table,
mdata,
concat_anndata_rna,
filtered_anndata_rna,
concat_anndata_guide,
concat_anndata_hashing,
adata_demux,
ks_transcripts_out_dir_collected,
ks_guide_out_dir_collected,
ks_hashing_out_dir_collected,
figures_dir,
evaluation_output_dir,
file(params.css),
file(params.js),
file(params.svg)
)
}