-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpres.rmd
More file actions
executable file
·440 lines (354 loc) · 21.3 KB
/
pres.rmd
File metadata and controls
executable file
·440 lines (354 loc) · 21.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
---
title: "Cryosphere microbiome"
author: "Shann Chongwattananukul"
output:
html_document:
theme: cerulean
higlight: tango
fig_width: 20
fig_height: 10
fig_caption: true
df_print: paged
---
```{r echo=FALSE, results='hide', message=FALSE, comment=NA}
source("./all_artifacts.r")
```
### Overview
* Why study cryosphere microboiomes?
+ Microorganisms in extreme environments unique properties which could be exploited for biotechnology
+ Due to global warming, we need to understand what happens to these habits if we lose them
#### Questions and methods used to address
* 1) How do the different habitats differ by taxonomic and functional diversity?
+ Beta diversity analysis on taxa and biological pathways
* 2) What taxa and functions are most associated with cryospheric environments? Do these differ between habitats?
+ Differential abundance analysis
* 3) Can we accurately classify what samples belong to which site using high-level taxonomic ranks?
+ Random forest model
#### Hypothesis
* We will observe greater taxonomic diversity between sites than functional diversity
+ There is a limited number of adaptations that microorganisms can evolve to survive in cryospheric environments, so we should expect a significant degree of convergent evolution towards the same pathways
### Pipeline
#### Overview
- The Nextflow pipeline used to process the reads first performs quality control, including trimming and contaminant removal.
- Afterwards, it combines reads using a 99% similarity threshold into operational taxonomic units or OTUs. The idea is that because every otu is unique, each one represents an individual species
```{r comment=NA}
# A single FastQ sequence has three components
example <- read.delim("./data/raw/Bihor_Mountain/SRR2998649.part-1.fastq")
show <- paste(c(example[4, ], example[5, ], example[6, ], example[7, ]), collapse = "\n")
message(show)
```
* **Input:**
+ Raw reads in FastQ format: 13 sites, 10 samples each
- A non-cryoconic sample ("New Zealand soil") was added as an "outgroup" comparison
+ Databases,
+ Pre-trained classifier model
* **Output:**
+ OTU frequency tables,
+ Taxonomic classifications of each OTU,
+ Pathway frequency table
+ Rooted phylogenetic trees

### Beta diversity analysis
* Beta diversity quantifies the distance/dissimilarity between sites and is measured on a scale of 0 (identical) to 1 (completely different).
+ Beta diversity calculations on multiple sites at once returns a distance matrix, where the first row and column are sites and entries are. The results can be visualized using a dimensionality reduction technique called principle coordinates analysis
+ The PcOA plots here were calculated directly with Qiime2 in an extension to the pipeline
###### Import results and plot
```{r, comment=NA}
beta <- get_artifact_data("./results/7-Diversity", list(Merged = NULL), extension = "", metric_list = beta_metrics)
pcoa2D <- get_artifact_data("./results/8-Analysis", list(Merged = NULL),
extension = "PCOA-2D_",
metric_list = beta_metrics
)
pcoa2D_merged <- lapply(pcoa2D$Merged, metadata_merge_pcoa, metadata = metadata)
pcoaja <- plot_pcoa(pcoa2D_merged$ja, "Location") +
labs(x = "PC1", y = "PC2", title = "Jaccard distance")
pcoabc <- plot_pcoa(pcoa2D_merged$bc, "Location") +
labs(x = "PC1", y = "PC2", title = "Bray Curtis")
pcoauu <- plot_pcoa(pcoa2D_merged$uu, "Location") +
labs(x = "PC1", y = element_blank(), title = "Unwieghted Unifrac")
pcoawn <- plot_pcoa(pcoa2D_merged$wn, "Location") +
labs(x = "PC1", y = element_blank(), title = "Weighted normalized Unifrac")
pcoa_arrange <- ggarrange(pcoabc, pcoauu, pcoawn, ncol = 3, common.legend = TRUE, legend = "right")
# Arrange plots
pcoa_arrange
```
* Clustering in the Bray Curtis plot represents sites sharing many of the same species and in similar abundances. The big cluster falls apart once we factor the evolutionary distance between OTUs, shown by the Unifrac metrics.
+ This implies that although some taxa are shared, the unique taxa are a evolutionary distant (essentially have very different DNA) from the shared ones.
+ Once we add weightings by abundance though, new clusters form, indicating there are many more common taxa within the groups than there are unique taxa.
+ Even partitioning sites by habitat type - glacier and permafrost, doesn't help
**Conclusions:** Many of the sites share the same taxa, but their phylogenetic relationships differ significantly. There is little overlap with the taxa in cryospheric and soil environments. The Hailstone site is the most distinct, when considering distance phylogenetic distance
#### Pathway analysis
* A metabolic pathway is essentially a set of reactions operating together for a specific purpose, such as energy storage or producing a certain molecule.
+ These tell us about how the microorganisms are interacting with each other and their environment
+ Performing a beta diversity analysis on the set of metabolic pathways will reveal the functional similarity of each site
### Import PICRUSt2 output
```{r cols.print=4, rows.print=4, comment=NA}
ko_all <- ko %>%
# Merge the PICRUSt2 tables
reduce(merge, by = "pathway", all = TRUE) %>%
as_tibble() %>%
replace(is.na(.), 0) %>%
rel_abund(., pathway) %>% # Convert to relative abundances
as_tibble()
ko_xfunc <- ko_all %>% sites_x_func() # Transpose into sites x function format
ko_all
```
* The raw output tables here are the abundances of inferred biological pathways in each site based on the MetaCyc database.
+ PICRUSt2 first predicts important reactions for metabolism in the site (using KEGG Orthology (KO) and Enzyme Commission numbers (EC)) format, then uses their abundances for pathway inference.
#### Compute distances, then plot
```{r cols.print=4, rows.print=4, comment=NA, message=FALSE, comment=NA}
# Bray-curtis distance
bc_func <- vegdist(ko_xfunc, method = "bray")
pcoa_bc_func <- bc_func %>%
wcmdscale(k = 2) %>%
metadata_merge_pcoa(metadata, ., functions = TRUE)
# Jaccard distance
ja_func <- vegdist(ko_xfunc, method = "jaccard")
pcoa_ja_func <- ja_func %>%
wcmdscale(k = 2) %>%
metadata_merge_pcoa(metadata, ., functions = TRUE)
# Plot and compare with ordination on taxonomy
plot_ja_func <- plot_pcoa(pcoa_ja_func, "Location", functions = TRUE) +
labs(x = element_blank(), y = element_blank(), title = "Jaccard distance",
subtitle = "From biological pathways")
plot_bc_func <- plot_pcoa(pcoa_bc_func, "Location", functions = TRUE) +
labs(x = "PC1", y = element_blank(), title = "Jaccard distance",
subtitle = "From biological pathways")
func_compare <- ggarrange(pcoaja + labs(x = element_blank()), plot_ja_func, pcoabc, plot_bc_func,
ncol = 2, nrow = 2, common.legend = TRUE, legend = "bottom"
) + theme(axis.text = element_text(size = 5))
func_compare
```
**Conclusions**: Sites differ more by pathway than they do by species, which implies that there are a few unique species within each site with a specialized, unique lifestyles, resulting in multiple unique pathways. The most distinct are the Catriona snow and Greenland ice sites.
### Abundance visualizations
#### Phyla
```{r cols.print=4, rows.print=4, comment=NA}
all <- read_qza("./results/2-OTUs/Merged-otuFreqs.qza")$data
sk_merged <- read_qza("./results/3-Classified/Merged-Sklearn.qza")$data %>% parse_taxonomy()
ranks <- merge_with_id(all, sk_merged, level = 2) %>%
filter(!(is.na(taxon))) %>%
group_by(taxon) %>%
summarise(across(everything(), sum))
# Collapse taxonomy into phyla
not_bacteria <- c(
"Arthropoda", "Nanoarchaeota", "Diatomea", "Altiarchaeota",
"Ascomycota", "Basidiomycota", "Cercozoa", "Ciliophora", "Asgardarchaeota",
"Phragmoplastophyta", "Euryarchaeota", "Crenarchaeota"
) # These are most likely false positives given the specificity of the 16s rRNA primers used to sequence the samples
tax_sum <- sum_by_site(ranks, id_key, "taxon", not_bacteria)
stacked <- tax_sum %>% ggplot(., aes(x = name, y = value, fill = identifier)) +
geom_bar(stat = "identity") +
scale_fill_discrete(name = "Phylum") +
scale_color_paletteer_d("pals::glasbey") +
labs(x = "Site", y = "Relative abundance", title = "Phyla relative abundance",
subtitle = "*Putative phyla and false positives (non-prokaryotes) removed") +
theme(axis.text = element_text(size = 5))
stacked
```
#### Pathways
```{r cols.print=4, rows.print=4, comment=NA}
shown_paths <- c(
"CHLOROPHYLL-SYN", "GLYCOLYSIS", "TCA", "CALVIN-PWY",
"PENTOSE-P-PWY", "METHANOGENESIS-PWY", "DENITRIFICATION-PWY", "FERMENTATION-PWY",
"LACTOSECAT-PWY", "METH-ACETATE-PWY"
)
nice_paths <- ko_all %>%
filter((grepl(paste(shown_paths, collapse = "|"), pathway)))
# Familiar pathways
path_sum <- sum_by_site(nice_paths, id_key, "pathway", NaN)
heat_path <- path_sum %>% ggplot(., aes(x = name, y = identifier, fill = value)) +
geom_tile() +
scale_fill_gradient2(name = "Relative abundance", mid = "seagreen1", low = "springgreen", high = "seagreen") +
labs(x = "Site", y = "Pathway", )
heat_path
```
### Differential abundance analysis
* **We know that the sites differ by the taxa and pathways present, but how do we quantify this?**
+ Visualizations work well as an overview, but do not scale to the number of OTUs (especially at lower levels...)
+ Traditional statistical methods fail on compositional data (i.e. relative abundances). Differential abundance anlaysis is specialized for this data, allowing us to confidently identifying units(OTUs/pathways) that are more or less present between different samples.
* There are many methods available, but **Analysis of Compositions of Microbiomes with Bias correction test (ANCOM-BC)**
seems to be the newest and most robust.
+ Notably, it accounts for biases related to sampling fraction and can provide p-values and confidence intervals for log-fold change for each unit
+ ANCOM-BC works by comparing the differential abundance of every taxon present in one sample against another sample in the dataset, for every pair of samples
```{r cols.print=4, rows.print=4, message=FALSE, warning=FALSE, include=FALSE, comment=NA}
# First we prepare the TreeSummarizedExperiment object
tax_info <- c("Kingdom", "Phylum", "Class", "Order", "Family", "Genus", "Species")
false_positives <- c("Unassigned", "Arthropoda", "Bacteria", "Insecta") # False positives
# Remove the soil site from the abundance anlayses
otus <- read_qza("./results/2-OTUs/Merged-otuFreqs.qza")$data %>% as.data.frame()
otus <- otus %>% select(-(grep("NzS", colnames(otus))))
metadata <- metadata %>% filter(!(grepl("NzS", sample.id)))
paths <- ko_all %>% column_to_rownames(., var = "pathway")
paths <- paths %>% select(-(grep("NzS", colnames(paths))))
# Format the metadata
formatted_meta_paths <- metadata[match(colnames(paths), metadata$sample.id), ] %>%
`rownames<-`(NULL) %>%
column_to_rownames(., var = "sample.id") %>%
sample_data()
phylo_path <- phyloseq(otu_table(paths, taxa_are_rows = TRUE), formatted_meta_paths)
# All of this is necessary because the TSE object won't be
# created properly unless the indices of the rownames match precisely
matched_tax <- sk_merged[match(rownames(otus), rownames(sk_merged)), ] %>%
tax_table() %>%
`colnames<-`(tax_info) # Match the rownames of the taxa identifications with the frequency tables
formatted_meta <- metadata[match(colnames(otus), metadata$sample.id), ] %>%
`rownames<-`(NULL) %>%
column_to_rownames(., var = "sample.id") %>%
sample_data()
# Match the metadata ids with frequency tables
rownames(otus) <- rownames(matched_tax) # Rename ids
my_phylo <- phyloseq(otu_table(otus, taxa_are_rows = TRUE), formatted_meta, matched_tax)
tse <- mia::makeTreeSummarizedExperimentFromPhyloseq(my_phylo)
tse_paths <- mia::makeTreeSummarizedExperimentFromPhyloseq(phylo_path)
var <- "Type"
chosen_rank <- "Class"
```
```r
# Differentially abundant taxa between cryosphere types
abc <- ancombc2(
data = tse, assay_name = "counts", tax_level = chosen_rank,
fix_formula = "Type", group = var,
# Fix formula specifies how to split the samples for comparison
pairwise = TRUE
)
lfc <- prepare_abc_lfc(abc, "Type", "res_pair", chosen_rank, false_positives)
# Test takes some time to run, so save results
write.csv2(abc$res_pair, "./results/8-ANCOM-BC/all_taxon_res.csv", row.names = FALSE)
write.csv2(lfc, "./results/8-ANCOM-BC/taxon_lfc.csv", row.names = FALSE)
```
```r
abc_paths <- ancombc2(
data = tse_paths, assay_name = "counts", tax_level = "Species",
fix_formula = "Type", pairwise = TRUE, group = "Type"
)
path_lfc <- prepare_abc_lfc(abc_paths, "Type", "res_pair", NA, NA)
write.csv2(abc_paths$res_pair, "./results/8-ANCOM-BC/all_path_res.csv", row.names = FALSE)
write.csv2(path_lfc, "./results/8-ANCOM-BC/path_lfc.csv", row.names = FALSE)
```
#### Differentially abundant Classes
```{r cols.print=4, rows.print=4, comment=NA}
abc_taxon <- read.csv2("./results/8-ANCOM-BC/all_taxon_res.csv")
taxon_all_counts <- abc_taxon %>%
ancombc_select(glue("diff_{var}"), chosen_rank, false_positives) %>%
select(taxon) %>%
unique() %>%
dim() # Collect counts of all taxa
lfc <- read.csv2("./results/8-ANCOM-BC/taxon_lfc.csv")
class_abund_count <- length(unique(lfc$taxon))
lfc <- quantile_filter(lfc, 0.1)
# We keep the taxa at the 90th and 10th percentiles of log-fold changes between the types
tax_ids <- as.character(1:length(lfc$taxon))
lfc$taxon <- paste(c(glue("{tax_ids}:")), lfc$taxon)
lfc[lfc$name == "Other", ]$name <- "Other vs. Glacier"
lfc[lfc$name == "Permafrost", ]$name <- "Permafrost vs. Glacier"
# The test selects the refrence Type based on alphabetical order ("Glacier" in this case), so I renamed it for clarity
lfc[grep("_", lfc$name), ]$name <- "Permafrost vs. Other"
abc_plot <- abc_lfc_plot(lfc) + scale_fill_discrete(name = "Class") + labs(x = "Type") +
geom_label(aes(label = tax_ids), label.size = 0.15,
position = position_dodge(width = .9), show.legend = FALSE
)
abc_taxon
abc_plot
```
The ANCOM-BC test returns p-values, so the results here are only the log-fold changes that are statistically significant
* **Interpretation:** the x-axis shows the comparisons being made, while the y-axis is the log-fold change in the taxon represented by that bar
* **Highlights**
* 66% of Classes (63 out of 96) were differentially abundant between sites
+ The other 33 could represent the "core" microbiome, shared between the habitat types
+ *I specified a cutoff so that the graph only shows the 90th and 10th percentiles so there are actually more that weren't shown
* Permafrost has a significantly lower amount of Cyanobacteria than both sites (bar 18 and bar 5), but higher levels of Desulfuromonadia
#### Differentially abundant pathways
```{r cols.print=4, rows.print=4, comment=NA}
all_path_lfc <- read.csv2("./results/8-ANCOM-BC/all_path_res.csv")
path_lfc <- read.csv2("./results/8-ANCOM-BC/path_lfc.csv")
path_all_counts <- all_path_lfc %>%
ancombc_select(glue("diff_{var}"), NA, NA) %>%
select(taxon) %>%
unique() %>%
dim()
pathway_abund_count <- length(unique(path_lfc$taxon))
percent_abund <- (pathway_abund_count / path_all_counts[1]) %>% round(digits = 2) * 100
path_lfc <- quantile_filter(path_lfc, cutoff = 0.05)
# Because there are so many pathways, keep only the 95th and 5th percentile for log-fold change
ids <- as.character(1:length(path_lfc$taxon))
path_lfc$taxon <- paste(c(glue("{ids}:")), path_lfc$taxon)
path_lfc[path_lfc$name == "Other", ]$name <- "Other vs. Glacier"
path_lfc[path_lfc$name == "Permafrost", ]$name <- "Permafrost vs. Glacier"
# The test selects the refrence Type based on alphabetical order ("Glacier" in this case), so I renamed it for clarity
path_lfc[grep("_", path_lfc$name), ]$name <- "Permafrost vs. Other"
abc_pathways <- abc_lfc_plot(path_lfc) +
scale_fill_discrete(name = "Pathway") +
geom_label(aes(label = ids), label.size = 0.15,
position = position_dodge(width = .9), show.legend = FALSE
)
all_path_lfc
abc_pathways
```
**Highlights:** 52% of pathways (216 out of 419) were differentially abundant, reinforcing how the habitat types have unique microbial communities. Compared to Glacier sites, Permafrost has a higher abundance of the vitamin b6 degradation pathway (PWY-5499). Permafrost is lacking in the benzoyl-CoA degradation (CENTBENZCOA-PWY) pathway
### Random forest for site prediction
* As an extension to one of the assignments, I wanted to build a model that predicts multiple classes. Habitat type ("Permafrost", "Glacier" or "Other") was the only variable that made sense for the dataset
+ Predicting Location would have worked, but I didn't have enough samples from each Location for training
* **Predictors:** relative abundances of each phyla
+ Phyla-level predictions are more accurate than lower-level ranks
+ Also reduces the number of features in the model
* A random forest model was the natural choice to reduce overfitting to the specific values of abundance in my dataset
```{r cols.print=4, rows.print=4, comment=NA}
bad_names <- ranks[grep("-", ranks$taxon), ]$taxon
# change the names to stop errors
new_names <- bad_names %>% gsub("-", "_", .)
phyla_abund <- ranks %>%
rel_abund() %>%
t() %>%
as.data.frame() %>%
`colnames<-`(.[1, ]) %>%
filter(!(grepl("NzS", rownames(.)))) %>%
select(!all_of((not_bacteria))) %>%
rename_with(~"Marinimicrobia", "Marinimicrobia_(SAR406_clade)") %>%
rename_with(~new_names, bad_names) %>%
# Remove and rename taxa
dplyr::slice(-1) %>%
rownames_to_column("pred") %>%
mutate_at(.vars = c(1:length(colnames(.)))[-1], .funs = as.numeric) %>%
as_tibble()
phyla_train <- phyla_abund %>%
mutate(pred = lapply(pred, function(x) {
return(filter(metadata, sample.id == x)$Type)
})) %>%
mutate(pred = unlist(pred)) %>%
mutate(pred = as.factor(pred)) # Site needs to be converted to a factor object
num_features <- length(colnames(phyla_train))
# Train the random forest
set.seed(2002)
preds <- sample(2, nrow(phyla_train), replace = TRUE, prob = c(0.7, 0.3))
train <- phyla_train[preds == 1, ]
test <- phyla_train[preds == 2, ]
rf <- randomForest(y = train$pred, x = train[, -1], data = train)
print(rf)
try <- predict(rf, test)
confusionMatrix(try, test$pred)
varImpPlot(rf, main = "Phyla importances")
```
Since the out-of-bag estimate for the error rate is 3.53% so the model is pretty good, even without adjusting any parameters.
This shows that the Phyla abundances (only 54 phyla) is suitable for accurately characterize habitat types
### References
Bokulich, N. A., Kaehler, B. D., Rideout, J. R., Dillon, M., Bolyen, E., Knight, R., Huttley, G. A., & Gregory Caporaso, J. (2018). Optimizing taxonomic classification of marker-gene amplicon sequences with QIIME 2’s q2-feature-classifier plugin. Microbiome, 6(1), 90. https://doi.org/10.1186/s40168-018-0470-z
Bolyen, E., Rideout, J. R., Dillon, M. R., Bokulich, N. A., Abnet, C. C., Al-Ghalith, G. A., Alexander, H., Alm, E. J., Arumugam, M., Asnicar, F., Bai, Y., Bisanz, J. E., Bittinger, K., Brejnrod, A., Brislawn, C. J., Brown, C. T., Callahan, B. J., Caraballo-Rodríguez, A. M., Chase, J., … Caporaso, J. G. (2019). Reproducible, interactive, scalable and extensible microbiome data science using QIIME 2. Nature Biotechnology, 37(8), Article 8. https://doi.org/10.1038/s41587-019-0209-9
Bourquin, M., Busi, S. B., Fodelianakis, S., Peter, H., Washburne, A., Kohler, T. J., Ezzat, L., Michoud, G., Wilmes, P., & Battin, T. J. (2022). The microbiome of cryospheric ecosystems. Nature Communications, 13(1), Article 1. https://doi.org/10.1038/s41467-022-30816-4
Douglas, G. M., Maffei, V. J., Zaneveld, J. R., Yurgel, S. N., Brown, J. R., Taylor, C. M., Huttenhower, C., & Langille, M. G. I. (2020). PICRUSt2 for prediction of metagenome functions. Nature Biotechnology, 38(6), Article 6. https://doi.org/10.1038/s41587-020-0548-6
Mongad, D. S., Chavan, N. S., Narwade, N. P., Dixit, K., Shouche, Y. S., & Dhotre, D. P. (2021). MicFunPred: A conserved approach to predict functional profiles from 16S rRNA gene sequence data. Genomics, 113(6), 3635–3643. https://doi.org/10.1016/j.ygeno.2021.08.016
National Center for Biotechnology Information (NCBI)[Internet]. Bethesda (MD): National Library of Medicine (US), National Center for Biotechnology Information; [1988] – [cited 2023 Jul 13]. Available from: https://www.ncbi.nlm.nih.gov/
Robeson, M. S., O’Rourke, D. R., Kaehler, B. D., Ziemski, M., Dillon, M. R., Foster, J. T., & Bokulich, N. A. (2020). RESCRIPt: Reproducible sequence taxonomy reference database management for the masses (p. 2020.10.05.326504). bioRxiv. https://doi.org/10.1101/2020.10.05.326504
The UniProt Consortium. (2023). UniProt: The Universal Protein Knowledgebase in 2023. Nucleic Acids Research, 51(D1), D523–D531. https://doi.org/10.1093/nar/gkac1052
Barrow Alaska https://www.ebi.ac.uk/ena/browser/view/PRJEB9043
Catriona snow https://www.ebi.ac.uk/ena/browser/view/PRJEB9658
Bihor Mountain ice caves: https://www.ncbi.nlm.nih.gov/bioproject/305850
Central Yakutia https://www.ncbi.nlm.nih.gov/bioproject/PRJNA734507
South East Iceland glaciers https://www.ncbi.nlm.nih.gov/bioproject/PRJNA678168
Rhizosphere sample (comparison group): https://www.ncbi.nlm.nih.gov/bioproject/873723
Sverdrup glacier: https://www.ncbi.nlm.nih.gov/sra/SRX18256802[accn]
Greenland ice sheet: https://www.ncbi.nlm.nih.gov/sra/SRX6813832[accn]
Storglaciaren https://www.ncbi.nlm.nih.gov/sra/ERX4489723[accn]
Cryoconite https://www.ncbi.nlm.nih.gov/sra/DRX182771[accn]
Villum station https://www.ncbi.nlm.nih.gov/sra/SRX6422141[accn]
Giant hailstone metagenome https://www.ncbi.nlm.nih.gov/sra/SRX17718721[accn] single,
New Zealand soil https://www.ncbi.nlm.nih.gov/sra/SRX828665[accn]