An open API service indexing awesome lists of open source software.

https://github.com/lpantano/custom_genome_annotation

some annotation that are not that standard but still useful
https://github.com/lpantano/custom_genome_annotation

Last synced: 3 months ago
JSON representation

some annotation that are not that standard but still useful

Awesome Lists containing this project

README

        

# custom_genome_annotation
some annotation that are not that standard but still useful

## qsignature hg38

```
awk '{print $1"\t"$2"\t"$2+1"\t"$3"\t"$4}' qsignature.vcf > qsignature.bed
CrossMap.py bed hg19ToHg38.over.chain.gz qsignature.bed qsignature.hg38.bed
awk '{print $1"\t"$2"\t"$4"\t"$5}' qsignature.hg38.bed > qsignature.hg38.txt
```

## acmg56

```
wget https://raw.githubusercontent.com/lpantano/chrom_map/master/chrom_map.py
python chrom_map.py --name GRCh37_ensembl2UCSC --input acmg56.GRCh37.bed --out acmg56.ucsc.bed
CrossMap.py bed ../qsignature/hg19ToHg38.over.chain.gz acmg56.ucsc.bed acmg56.ucsc.hg38.bed
```