This file is indexed.

/usr/share/doc/mira-examples/examples/minidemo/solexa3_lenski/1_fetchdata.sh is in mira-examples 4.0.2-1.

This file is owned by root:root, with mode 0o755.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
#!/bin/sh

mkdir origdata
cd origdata
echo "Fetching sequence of reference genome Escherichia_coli_B_REL606 at GenBank"
wget ftp://ftp.ncbi.nih.gov/genomes/Bacteria/Escherichia_coli_B_REL606/NC_012967.gbk

echo "Fetching sequencing data (2 files) for strain REL8593A"
wget ftp://ftp.ncbi.nlm.nih.gov/sra/static/SRX012/SRX012992/SRR030257_1.fastq.gz
wget ftp://ftp.ncbi.nlm.nih.gov/sra/static/SRX012/SRX012992/SRR030257_2.fastq.gz

cd ..