xingyusu commited on
Commit
c612b46
·
1 Parent(s): e273fbc
promoter_design/FANTOM_CAT.lv3_robust.tss.sortedby_fantomcage.hg38.v4.tsv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8a44dc270d0d3c09b4c8c9ba76bbe234f13d813a05ba8beb2aefc63211243ed8
3
+ size 59413610
promoter_design/Homo_sapiens.GRCh38.dna.primary_assembly.fa ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:556cd7558812e7d479f802ba423e0facd1b64e8930e8b6e67f9ef3f9bfc05a3b
3
+ size 3139742449
promoter_design/Homo_sapiens.GRCh38.dna.primary_assembly.fa.fai ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:94eefaae71709b62a37754e664f481c7582157f7378920da964d94e7df25ec60
3
+ size 758
promoter_design/Homo_sapiens.GRCh38.dna.primary_assembly.fa.mmap ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:061f5bc0935b3d22795aaa712b06490f9ee46328900224f6871198643b694042
3
+ size 49412317312
promoter_design/README.md ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ## FANTOM Input Data
2
+
3
+ #### Input Signal
4
+ agg.plus.bw.bedgraph.bw
5
+ agg.minus.bw.bedgraph.bw
6
+
7
+ Please unzip bigwig files before using the data.
8
+
9
+ #### Blacklist Regionts for hg38
10
+ fantom.blacklist8.plus.bed.gz
11
+ fantom.blacklist8.plus.bed.gz.tbi
12
+ fantom.blacklist8.minus.bed.gz
13
+ fantom.blacklist8.minus.bed.gz.tbi
14
+
15
+ #### Sorted TSS
16
+ FANTOM_CAT.lv3_robust.tss.sortedby_fantomcage.hg38.v4.tsv
17
+
18
+ best.sei.model.pth.tar
19
+ target.sei.names
20
+
21
+ #### Human Reference genome used for analysis
22
+ Homo_sapiens.GRCh38.dna.primary_assembly.fa.gz
23
+
24
+ Please unzip human reference before using it.
25
+
26
+ #### Python script file
27
+ Promoter design script requires one-hot represenation of human genome.
28
+ make_genome_memmap.py script creates .mmap file. See instruction of files
29
+ how to run it.
promoter_design/agg.minus.bw.bedgraph.bw ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4b40cfa468db1708a0b9634919c0bce12f5dd67d4531d083b7519825f50fe119
3
+ size 1219801267
promoter_design/agg.plus.bw.bedgraph.bw ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:811ea90879c4fee283467b9c8058d06b87cae3afef51c7396e77262927426150
3
+ size 1463374541
promoter_design/best.sei.model.pth.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d5e522ed80e61830b577907fbdad691caea1c580572f492a907249c0c2774e1b
3
+ size 7119854596
promoter_design/fantom.blacklist8.minus.bed.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ee9dbf3e81b1b7e957eb310c52bf9bc09e8c1abbc90ea015aaf8c1c1dc2ce8ab
3
+ size 6534025
promoter_design/fantom.blacklist8.minus.bed.gz.tbi ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:721fab76b61353717ed8c9e505418218b4a5004a8b31b9aa749ba57614387bc2
3
+ size 1282674
promoter_design/fantom.blacklist8.plus.bed.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:634f4cec41df4141874d42f7c5b7016a18f0c2fcbe84d8cb2c9c327cb66b4987
3
+ size 6581607
promoter_design/fantom.blacklist8.plus.bed.gz.tbi ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9fe8aa5ffde498a07f1e2f38ba83103b6292645204e0aef3d41e677294f789ad
3
+ size 1288549
promoter_design/make_genome_memmap.py ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """
2
+ This script converts the genome fasta file to a memory map
3
+ file of genome one-hot encodings. This is used to accelerate
4
+ genome sequence retrieval.
5
+
6
+ Example usage: python make_genome_memmap.py
7
+ """
8
+
9
+ import sys
10
+ sys.path.append("/data/xsu2/dirichlet-flow-matching")
11
+
12
+ import pathlib
13
+ from utils.selene_utils import MemmapGenome
14
+
15
+
16
+ if __name__ == "__main__":
17
+ hg38 = MemmapGenome(
18
+ input_path="Homo_sapiens.GRCh38.dna.primary_assembly.fa",
19
+ memmapfile="Homo_sapiens.GRCh38.dna.primary_assembly.fa.mmap",
20
+ init_unpicklable=True,
21
+ )
promoter_design/target.sei.names ADDED
The diff for this file is too large to render. See raw diff