Skip to content

Instantly share code, notes, and snippets.

@marehr
Created March 18, 2020 13:44
Show Gist options
  • Save marehr/d34f6d7e92a7ca58c37ab251a0e8e3b8 to your computer and use it in GitHub Desktop.
Save marehr/d34f6d7e92a7ca58c37ab251a0e8e3b8 to your computer and use it in GitHub Desktop.
add_executable (my_app hello.cpp)
# https://rfam.org/
# The Rfam database is a collection of RNA families, each represented by multiple sequence alignments, consensus
# secondary structures and covariance models (CMs).
# ftp://ftp.ebi.ac.uk/pub/databases/Rfam
declare_datasource(
FILE RF00001.fa.gz # build/data/RF00001.fa.gz
URL ftp://ftp.ebi.ac.uk/pub/databases/Rfam/12.1/fasta_files/RF00001.fa.gz
URL_HASH
)
# https://www.rcsb.org/pages/download/ftp
# A Structural View of Biology
#
# This resource is powered by the Protein Data Bank archive-information about the 3D shapes of proteins, nucleic acids,
# and complex assemblies that helps students and researchers understand all aspects of biomedicine and agriculture, from
# protein synthesis to health and disease.
#
# As a member of the wwPDB, the RCSB PDB curates and annotates PDB data.
#
# The RCSB PDB builds upon the data by creating tools and resources for research and education in molecular biology,
# structural biology, computational biology, and beyond.
declare_datasource(
FILE pdb100d.ent.gz # build/data/pdb100d.ent.gz
URL ftp://ftp.wwpdb.org/pub/pdb/data/structures/divided/pdb/00/pdb100d.ent.gz
URL_HASH
)
# https://www.ncbi.nlm.nih.gov/genome/guide/human/
declare_datasource(
FILE GRCh38_latest_clinvar.vcf.gz # build/data/GRCh38_latest_clinvar.vcf.gz
URL ftp://ftp.ncbi.nlm.nih.gov/refseq/H_sapiens/annotation/GRCh38_latest/refseq_identifiers/GRCh38_latest_clinvar.vcf.gz
URL_HASH
)
target_use_datasources(my_app FILES RF00001.fa.gz pdb100d.ent.gz GRCh38_latest_clinvar.vcf.gz)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment