Workflow Steps and Code Snippets
898 tagged steps and code snippets that match keyword FastQC
WES analysis pipeline
178 179 180 181 182 183 184 185 186 | shell: """ tmpdir=qc/fastqc/{wildcards.patient}-{wildcards.sample_type}.tmp mkdir $tmpdir fastqc --outdir $tmpdir {input} mv $tmpdir/{wildcards.patient}.{wildcards.sample_type}_fastqc.html {output.html} mv $tmpdir/{wildcards.patient}.{wildcards.sample_type}_fastqc.zip {output.zipdata} rm -r $tmpdir """ |
Snakemake pipeline for detection limit test from laser-microdissected samples
12 13 | shell: "fastqc {input} 2> {log} 1>&2" |
Bioinfo Macro Host Genome Short Variant Discovery Workflow
12 13 | shell: "fastqc {input} 2> {log} 1>&2" |
Repository containing bioinformatic code for macro-scale host transcriptomic data processing (v0.0.1)
12 13 | shell: "fastqc --quiet {input} 2> {log} 1>&2" |
Snakemake workflow: Bioinfo_Macro_Microbial_Metatranscriptomics
12 13 | shell: "fastqc {input} 2> {log} 1>&2" |
Snakemake workflow: Bioinfo_Macro_Microbial_Metatranscriptomics
12 13 | shell: "fastqc {input} 2> {log} 1>&2" |
tool / biotools
FastQC
This tool aims to provide a QC report which can spot problems or biases which originate either in the sequencer or in the starting library material. It can be run in one of two modes. It can either run as a stand alone interactive application for the immediate analysis of small numbers of FastQ files, or it can be run in a non-interactive mode where it would be suitable for integrating into a larger analysis pipeline for the systematic processing of large numbers of files.