edmundmiller commited on
Commit
5a526c6
1 Parent(s): 09df1a4

Add Megatests Data

Browse files
testdata/mega/.gitignore ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ *.zip
2
+ datasets
3
+ *.fastq
testdata/mega/SRR443366.fastq.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:48d01a664fb1180f555228e81b1b8e969a9d8c2684af139d8f7379d0d3a2ca55
3
+ size 2919077923
testdata/mega/SRR443367.fastq.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5338f3859a25ac5dd7e93cbeaf6b5470ddb6eda27795cecc9afeca1a44710dd0
3
+ size 3496764017
testdata/mega/SRR443368.fastq.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6352370f66dc2b35739db06d47a33992a23c2f6ec53f078176e5482663c65f57
3
+ size 3143055477
testdata/mega/download.sh ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env nix-shell
2
+ #! nix-shell -i bash --pure
3
+ #! nix-shell -p bash sratoolkit curl unzip
4
+
5
+ # GENOMES:
6
+ # Lc. mesenteroides https://www.ncbi.nlm.nih.gov/datasets/genome/GCF_009913915.1/
7
+ # Lb. sakei subsp. sakei 23K https://www.ncbi.nlm.nih.gov/datasets/genome/GCF_000026065.1/
8
+ # W. koreensis KACC 15510 https://www.ncbi.nlm.nih.gov/datasets/genome/GCF_000219805.1/
9
+ # Lc. gasicomitatum LMG 18811 https://www.ncbi.nlm.nih.gov/datasets/genome/GCF_000196855.1/
10
+ # RAW READS:
11
+ # J7, https://www.ncbi.nlm.nih.gov/sra/SRX128699[accn]
12
+ # J13, https://www.ncbi.nlm.nih.gov/sra/SRX128700[accn]
13
+ # J18, https://www.ncbi.nlm.nih.gov/sra/SRX128702[accn]
14
+
15
+ fasterq-dump --split-3 SRR443366
16
+ fasterq-dump --split-3 SRR443367
17
+ fasterq-dump --split-3 SRR443368
18
+
19
+ gzip *.fastq
20
+
21
+ curl -o datasets 'https://ftp.ncbi.nlm.nih.gov/pub/datasets/command-line/v2/linux-amd64/datasets'
22
+ chmod +x datasets
23
+
24
+ ./datasets download genome accession GCF_009913915.1 --filename GCF_009913915.1.zip
25
+ ./datasets download genome accession GCF_000026065.1 --filename GCF_000026065.1.zip
26
+ ./datasets download genome accession GCF_000219805.1 --filename GCF_000219805.1.zip
27
+ ./datasets download genome accession GCF_000196855.1 --filename GCF_000196855.1.zip
28
+
29
+ mkdir genomes
30
+ for i in *.zip; do unzip -j $i ncbi_dataset/data/*/*.fna -d genomes; done
testdata/mega/genomes/GCF_000026065.1_ASM2606v1_genomic.fna ADDED
The diff for this file is too large to render. See raw diff
 
testdata/mega/genomes/GCF_000196855.1_ASM19685v1_genomic.fna ADDED
The diff for this file is too large to render. See raw diff
 
testdata/mega/genomes/GCF_000219805.1_ASM21980v1_genomic.fna ADDED
The diff for this file is too large to render. See raw diff
 
testdata/mega/genomes/GCF_009913915.1_ASM991391v1_genomic.fna ADDED
The diff for this file is too large to render. See raw diff