Skip to content

Commit

Permalink
Adding a differential expression process
Browse files Browse the repository at this point in the history
  • Loading branch information
msmallegan committed Jun 17, 2019
1 parent 6d6c30a commit 4fc66ce
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -276,3 +276,22 @@ process multiqc {
--cl_config "extra_fn_clean_exts: [ '_1', '_2' ]"
"""
}

process differential_expression {

publishDir "reports"

input:
file annotation from annotation_for_de
file salmon from salmon_for_de.collect()
file sample_info from sample_info_for_de

output:
file "*.html"

script:
"""
cp ${baseDir}/bin/*.R* .
Rscript -e 'rmarkdown::render("differential_expression.Rmd", params = list(annotation_file = "${annotation}"))'
"""
}

0 comments on commit 4fc66ce

Please sign in to comment.