Skip to content

Latest commit

 

History

History
33 lines (21 loc) · 1.13 KB

README.md

File metadata and controls

33 lines (21 loc) · 1.13 KB

TET2 manuscript code

QC and adapter/quality trimming

  1. Fastqc - script like qc.sh but for untrimmed files
  2. Use fastp.sh to remove adapters and filter based on quality
  3. qc.sh - check quality, if adapters were removed

Mapping

  1. star_index.sh - create an index file for star
  2. map_array.sh - map reads to reference
  3. samtools stats qc of bam files to check the quality of mapping

Retriving counts

  1. featureCounts_all.sh - get counts of reads mapped to reference genes

Differential analysis

  1. analysis/differential_expression.R - script for differential analysis using DEseq2 with firther pathways analysis.

Variables that need to be exported befor running the code:

export curdir=/path/to/this/repo export raw=$curdir/raw

Notes