QC Report for Quartet RNA-Seq
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 line
644B

  1. (ns tservice.plugins.quartet-rnaseq-report.util
  2. (:require [clj-yaml.core :as yaml]))
  3. (defn gen-multiqc-config
  4. [config-file]
  5. (let [config (yaml/generate-string
  6. {:run_modules ["rnaseq_data_generation_information"
  7. "rnaseq_performance_assessment"
  8. "rnaseq_raw_qc"
  9. "rnaseq_post_alignment_qc"
  10. "rnaseq_quantification_qc"
  11. "rnaseq_supplementary"]
  12. :skip_generalstats true}
  13. :dumper-options {:flow-style :block})]
  14. (spit config-file config)))