Skip to content

Commit 65cf041

Browse files
author
aaryanjaitly
committed
test data source add
1 parent e453c91 commit 65cf041

1 file changed

Lines changed: 24 additions & 0 deletions

File tree

README.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,30 @@ git remote set-branches --add origin [remote-branch]
3232
git fetch
3333
```
3434

35+
## Test Dataset Overview
36+
37+
- Source: ENCODE Mouse Development Matrix
38+
39+
- Tissue: Kidney
40+
41+
- Stage: Postnatal Day 0 (P0)
42+
43+
- Replicate: 1
44+
45+
- Marks/Assays: H3K4me3 (ChIP-seq), H3K36me3 (ChIP-seq), WGBS
46+
47+
```bash
48+
# 1. Subset to chr12
49+
samtools view -b H3K4me3_KIDNEY_MOUSE_P0.bam chr12 > H3K4me3_KIDNEY_MOUSE_P0_chr12.bam
50+
zcat WGBS_KIDNEY_MOUSE_P0.bed.gz | awk '$1 == "chr12"' | gzip > WGBS_KIDNEY_MOUSE_P0_chr12.bed.gz
51+
52+
# 2. Downsample to specific 500kb region
53+
samtools view -h -b H3K4me3_KIDNEY_MOUSE_P0_chr12.bam "chr12:10000000-10500000" > small_H3K4me3.bam
54+
samtools view -h -b H3K36me3_KIDNEY_MOUSE_P0_chr12.bam "chr12:10000000-10500000" > small_H3K36me3.bam
55+
zcat WGBS_KIDNEY_MOUSE_P0_chr12.bed.gz | awk '$1=="chr12" && $2>=10000000 && $3<=10500000' | gzip > small_WGBS.bed.gz
56+
```
57+
58+
3559
## Support
3660

3761
For further information or help, don't hesitate to get in touch on our [Slack organisation](https://nf-co.re/join/slack) (a tool for instant messaging).

0 commit comments

Comments
 (0)