Skip to content

Commit ea1418e

Browse files
authored
Merge pull request #2004 from aaryanjaitly/epigenomesegmentation
Initial test data add along with source and DOI
2 parents b5ea846 + 9206f26 commit ea1418e

4 files changed

Lines changed: 32 additions & 0 deletions

File tree

README.md

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

35+
## Test Dataset Overview
36+
37+
38+
- Source: ENCODE Mouse Development Matrix
39+
40+
- DOI: https://doi.org/10.1038/nature11247
41+
42+
- Tissue: Kidney
43+
44+
- Stage: Postnatal Day 0 (P0)
45+
46+
- Replicate: 1
47+
48+
- Marks/Assays: H3K4me3 (ChIP-seq), H3K36me3 (ChIP-seq), WGBS
49+
50+
- Files:
51+
- https://www.encodeproject.org/files/ENCFF824RZT/@@download/ENCFF824RZT.bam -> H3K4me3
52+
- https://www.encodeproject.org/files/ENCFF980SRC/@@download/ENCFF980SRC.bam -> H3K36me3
53+
- https://www.encodeproject.org/files/ENCFF847ROX/@@download/ENCFF847ROX.bed.gz -> WGBS
54+
55+
```bash
56+
# 1. Subset to chr12
57+
samtools view -b H3K4me3_KIDNEY_MOUSE_P0.bam chr12 > H3K4me3_KIDNEY_MOUSE_P0_chr12.bam
58+
zcat WGBS_KIDNEY_MOUSE_P0.bed.gz | awk '$1 == "chr12"' | gzip > WGBS_KIDNEY_MOUSE_P0_chr12.bed.gz
59+
60+
# 2. Downsample to specific 500kb region
61+
samtools view -h -b H3K4me3_KIDNEY_MOUSE_P0_chr12.bam "chr12:10000000-10500000" > small_H3K4me3.bam
62+
samtools view -h -b H3K36me3_KIDNEY_MOUSE_P0_chr12.bam "chr12:10000000-10500000" > small_H3K36me3.bam
63+
zcat WGBS_KIDNEY_MOUSE_P0_chr12.bed.gz | awk '$1=="chr12" && $2>=10000000 && $3<=10500000' | gzip > small_WGBS.bed.gz
64+
```
65+
66+
3567
## Support
3668

3769
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).
140 KB
Binary file not shown.
107 KB
Binary file not shown.
68.9 KB
Binary file not shown.

0 commit comments

Comments
 (0)