Initial RNA-seq DESeq2 pipeline manifests

This commit is contained in:
2026-06-21 06:39:53 -04:00
commit 395c18a9e6
9 changed files with 431 additions and 0 deletions
+43
View File
@@ -0,0 +1,43 @@
# 03-job-fastqc.yaml
apiVersion: batch/v1
kind: Job
metadata:
name: fastqc
namespace: rnaseq
spec:
backoffLimit: 2
template:
spec:
restartPolicy: Never
containers:
- name: fastqc
image: biocontainers/fastqc:v0.11.9_cv8
command: ["/bin/sh", "-c"]
args:
- |
set -e
echo "=== Running FastQC on all samples ==="
fastqc \
/data/raw/ERR458493.fastq.gz \
/data/raw/ERR458500.fastq.gz \
--outdir /data/fastqc \
--threads 4
echo "=== Done ==="
ls -lh /data/fastqc/
resources:
requests:
memory: "1Gi"
cpu: "2"
limits:
memory: "2Gi"
cpu: "4"
volumeMounts:
- name: workspace
mountPath: /data
volumes:
- name: workspace
persistentVolumeClaim:
claimName: rnaseq-workspace