qc_fastqc: Generate a quality control (QC) report from a fastaqc file

View source: R/fastqc.R

qc_fastqcR Documentation

Generate a quality control (QC) report from a fastaqc file

Description

This function takes a set of sequence files (fastq,SAM,BAM...) and returns a report in HTML format.

Usage

qc_fastqc(
  bin_fastqc = build_default_tool_binary_list()$bin_fastqc,
  file_R1 = "",
  file_R2 = "",
  output_dir = ".",
  verbose = FALSE,
  batch_config = build_default_preprocess_config(),
  executor_id = make_unique_id("fastQC"),
  task_name = "fastQC",
  mode = "local",
  threads = 3,
  ram = 4,
  time = "48:0:0",
  update_time = 60,
  wait = FALSE,
  hold = NULL
)

Arguments

bin_fastqc

Path to fastQC executable. Default path tools/FastQC/bin/fastqc.

file_R1

Path to the input file with the sequence.

file_R2

Optional Path to the input with the reverse read sequence.

output_dir

Path to the output directory.

verbose

Enables progress messages. Default False.

executor_id

Executor ID. Default "fastQC"

task_name

Name of the task. Default "fastQC"

mode

REQUIRED Where to parallelize. Default local. Options "local","batch"

threads

Number of CPU cores to use. Default 3.

ram

RAM memory for batched job. Default 4

time

OPTIONAL If batch mode. Max run time per job. Default "48:0:0"

update_time

OPTIONAL If batch mode. Job update time in seconds. Default 60.

wait

OPTIONAL If batch mode wait for batch to finish. Default FALSE

hold

Job to hold on in batched mode.


TearsWillFall/ULPwgs documentation built on April 18, 2024, 3:45 p.m.