We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Write a script that runs all the other scripts so that the 1000 Genome Project can be synchronized with one single command.
Example of how this script could be called:
./sync1kg.sh
If all other files adhere to the specified examples, this file should have a content similar to:
#!/bin/bash echo "Creating directory for holding temporary files" mkdir -p etl/ ./src/files-crawler.sh ftp://ftp.ncbi.nlm.nih.gov/ > etl/files.csv ./src/sequences-metadata.sh ftp://ftp-trace.ncbi.nih.gov/1000genomes/ftp/sequence.index > etl/sequences.csv ./src/alignment-metadata.sh ftp://ftp-trace.ncbi.nih.gov/1000genomes/ftp/alignment.index > etl/alignments.csv ./src/sample-metadata.sh ftp://ftp.1000genomes.ebi.ac.uk/vol1/ftp/technical/working/20130606_sample_info/20130606_sample_info.txt > etl/samples.csv TODO: download population and superpopulations csv files ./src/load-mysql.sh etl/samples.csv etl/populations.csv etl/superpopulations.csv etl/sequences.csv etl/alignments.csv etl/files.csv
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Write a script that runs all the other scripts so that the 1000 Genome Project can be synchronized with one single command.
Particular behavior
Execution Example
Example of how this script could be called:
Contents Example
If all other files adhere to the specified examples, this file should have a content similar to:
The text was updated successfully, but these errors were encountered: