Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

fetch-truthset.sh 391 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
  1. #!/bin/bash
  2. # ./fetch-truthset.sh
  3. mkdir ref
  4. cd ref
  5. wget http://ftp.ncbi.nlm.nih.gov/1000genomes/ftp/technical/reference/human_g1k_v37.fasta.gz
  6. gzip -d human_g1k_v37.fasta.gz
  7. cd ..
  8. mkdir truth
  9. cd truth
  10. for ext in .vcf.gz .vcf.gz.tbi .bed; do
  11. wget https://ftp-trace.ncbi.nlm.nih.gov/giab/ftp/data/AshkenazimTrio/analysis/NIST_SVs_Integration_v0.6/HG002_SVs_Tier1_v0.6${ext}
  12. done
  13. cd ..
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...