-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvcf.rs
More file actions
1070 lines (988 loc) · 35.7 KB
/
vcf.rs
File metadata and controls
1070 lines (988 loc) · 35.7 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
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
use crate::models::operations::OperationInfo;
use crate::models::{
block_group::{BlockGroup, BlockGroupData, PathCache, PathChange},
file_types::FileTypes,
node::Node,
operations::Operation,
path::{Path, PathBlock},
sample::Sample,
sequence::Sequence,
strand::Strand,
traits::*,
};
use crate::operation_management::{end_operation, start_operation, OperationError};
use crate::progress_bar::{add_saving_operation_bar, get_handler, get_progress_bar};
use crate::{calculate_hash, parse_genotype};
use noodles::vcf;
use noodles::vcf::variant::record::info::field::Value as InfoValue;
use noodles::vcf::variant::record::samples::series::value::genotype::Phasing;
use noodles::vcf::variant::record::samples::series::Value;
use noodles::vcf::variant::record::samples::Sample as NoodlesSample;
use noodles::vcf::variant::record::AlternateBases;
use noodles::vcf::variant::Record;
use rusqlite;
use rusqlite::{types::Value as SQLValue, Connection};
use std::collections::{HashMap, HashSet};
use std::fmt::Debug;
use std::{io, str};
use thiserror::Error;
#[derive(Debug)]
struct BlockGroupCache<'a> {
pub cache: HashMap<BlockGroupData<'a>, i64>,
pub conn: &'a Connection,
}
impl<'a> BlockGroupCache<'_> {
pub fn new(conn: &Connection) -> BlockGroupCache {
BlockGroupCache {
cache: HashMap::<BlockGroupData, i64>::new(),
conn,
}
}
pub fn lookup(
block_group_cache: &mut BlockGroupCache<'a>,
collection_name: &'a str,
sample_name: &'a str,
name: String,
parent_sample: Option<&'a str>,
) -> Result<i64, &'static str> {
let block_group_key = BlockGroupData {
collection_name,
sample_name: Some(sample_name),
name: name.clone(),
};
let block_group_lookup = block_group_cache.cache.get(&block_group_key);
if let Some(block_group_id) = block_group_lookup {
Ok(*block_group_id)
} else {
let new_block_group_id = BlockGroup::get_or_create_sample_block_group(
block_group_cache.conn,
collection_name,
sample_name,
&name,
parent_sample,
);
block_group_cache
.cache
.insert(block_group_key, new_block_group_id?);
new_block_group_id
}
}
}
#[derive(Clone, Debug, Eq, Hash, PartialEq)]
pub struct SequenceKey<'a> {
sequence_type: &'a str,
sequence: String,
}
#[derive(Debug)]
pub struct SequenceCache<'a> {
pub cache: HashMap<SequenceKey<'a>, Sequence>,
pub conn: &'a Connection,
}
impl<'a> SequenceCache<'_> {
pub fn new(conn: &Connection) -> SequenceCache {
SequenceCache {
cache: HashMap::<SequenceKey, Sequence>::new(),
conn,
}
}
pub fn lookup(
sequence_cache: &mut SequenceCache<'a>,
sequence_type: &'a str,
sequence: String,
) -> Sequence {
let sequence_key = SequenceKey {
sequence_type,
sequence: sequence.clone(),
};
let sequence_lookup = sequence_cache.cache.get(&sequence_key);
if let Some(found_sequence) = sequence_lookup {
found_sequence.clone()
} else {
let new_sequence = Sequence::new()
.sequence_type("DNA")
.sequence(&sequence)
.save(sequence_cache.conn);
sequence_cache
.cache
.insert(sequence_key, new_sequence.clone());
new_sequence
}
}
}
#[allow(clippy::too_many_arguments)]
fn prepare_change(
sample_bg_id: i64,
sample_path: &Path,
ids: Option<String>,
ref_start: i64,
ref_end: i64,
chromosome_index: i64,
phased: i64,
block_sequence: String,
sequence_length: i64,
node_id: i64,
) -> PathChange {
// TODO: new sequence may not be real and be <DEL> or some sort. Handle these.
let new_block = PathBlock {
id: 0,
node_id,
block_sequence,
sequence_start: 0,
sequence_end: sequence_length,
path_start: ref_start,
path_end: ref_end,
strand: Strand::Forward,
};
PathChange {
block_group_id: sample_bg_id,
path: sample_path.clone(),
path_accession: ids,
start: ref_start,
end: ref_end,
block: new_block,
chromosome_index,
phased,
}
}
#[derive(Debug)]
struct VcfEntry<'a> {
block_group_id: i64,
sample_name: String,
path: Path,
ids: Option<String>,
ref_start: i64,
alt_seq: &'a str,
chromosome_index: i64,
phased: i64,
}
#[derive(Error, Debug, PartialEq)]
pub enum VcfError {
#[error("Operation Error: {0}")]
OperationError(#[from] OperationError),
}
pub fn update_with_vcf<'a>(
vcf_path: &String,
collection_name: &'a str,
fixed_genotype: String,
fixed_sample: String,
conn: &Connection,
operation_conn: &Connection,
coordinate_frame: impl Into<Option<&'a str>>,
) -> Result<Operation, VcfError> {
let progress_bar = get_handler();
let coordinate_frame = coordinate_frame.into();
let mut session = start_operation(conn);
let mut reader = vcf::io::reader::Builder::default()
.build_from_path(vcf_path)
.expect("Unable to parse");
let header = reader.read_header().unwrap();
let sample_names = header.sample_names();
for name in sample_names {
Sample::get_or_create(conn, name);
}
if !fixed_sample.is_empty() {
Sample::get_or_create(conn, &fixed_sample);
}
let mut genotype = vec![];
if !fixed_genotype.is_empty() {
genotype = parse_genotype(&fixed_genotype);
}
// Cache a bunch of data ahead of making changes
let mut block_group_cache = BlockGroupCache::new(conn);
let mut path_cache = PathCache::new(conn);
let mut sequence_cache = SequenceCache::new(conn);
let mut accession_cache = HashMap::new();
let mut changes: HashMap<(Path, String), Vec<PathChange>> = HashMap::new();
let mut parent_block_groups: HashMap<(&str, i64), i64> = HashMap::new();
let mut created_samples = HashSet::new();
let _ = progress_bar.println("Parsing VCF for changes.");
let bar = progress_bar.add(get_progress_bar(None));
bar.set_message("Records Parsed");
for result in reader.records() {
let record = result.unwrap();
let seq_name: String = record.reference_sequence_name().to_string();
let ref_seq = record.reference_bases();
// this converts the coordinates to be zero based, start inclusive, end exclusive
let ref_end = record.variant_end(&header).unwrap().get() as i64;
let alt_bases = record.alternate_bases();
let alt_alleles: Vec<_> = alt_bases.iter().collect::<io::Result<_>>().unwrap();
let mut vcf_entries = vec![];
let accession_name: Option<String> = match record.info().get(&header, "GAN") {
Some(v) => match v.unwrap().unwrap() {
InfoValue::String(v) => Some(v.to_string()),
_ => None,
},
_ => None,
};
let accession_allele: i32 = match record.info().get(&header, "GAA") {
Some(v) => match v.unwrap().unwrap() {
InfoValue::Integer(v) => v,
_ => 0,
},
_ => 0,
};
if !fixed_sample.is_empty() && !genotype.is_empty() {
if !created_samples.contains(&fixed_sample) {
Sample::get_or_create_child(conn, collection_name, &fixed_sample, coordinate_frame);
created_samples.insert(&fixed_sample);
}
let sample_bg_id = BlockGroupCache::lookup(
&mut block_group_cache,
collection_name,
&fixed_sample,
seq_name.clone(),
coordinate_frame,
);
let sample_bg_id = sample_bg_id.expect("can't find sample bg....check this out more");
for (chromosome_index, genotype) in genotype.iter().enumerate() {
if let Some(gt) = genotype {
let allele_accession = accession_name
.clone()
.filter(|_| gt.allele as i32 == accession_allele);
let mut ref_start = (record.variant_start().unwrap().unwrap().get() - 1) as i64;
if gt.allele != 0 {
let mut alt_seq = alt_alleles[chromosome_index - 1];
// If the alt sequence is a deletion, we want to remove the base in common in the VCF spec.
// So if VCF says ATC -> A, we don't want to include the `A` in the alt_seq.
if alt_seq != "*" && alt_seq.len() < ref_seq.len() {
ref_start += 1;
alt_seq = &alt_seq[1..];
}
let phased = match gt.phasing {
Phasing::Phased => 1,
Phasing::Unphased => 0,
};
let sample_path =
PathCache::lookup(&mut path_cache, sample_bg_id, seq_name.clone());
vcf_entries.push(VcfEntry {
ids: allele_accession,
ref_start,
block_group_id: sample_bg_id,
path: sample_path.clone(),
sample_name: fixed_sample.clone(),
alt_seq,
chromosome_index: chromosome_index as i64,
phased,
});
} else if let Some(ref_accession) = allele_accession {
let sample_path =
PathCache::lookup(&mut path_cache, sample_bg_id, seq_name.clone());
let key = (sample_path, ref_accession.clone());
accession_cache.entry(key).or_insert_with(|| {
(ref_start, ref_start + record.reference_bases().len() as i64)
});
}
}
}
} else {
for (sample_index, sample) in record.samples().iter().enumerate() {
let sample_name = &sample_names[sample_index];
if !created_samples.contains(sample_name) {
Sample::get_or_create_child(
conn,
collection_name,
sample_name,
coordinate_frame,
);
created_samples.insert(sample_name);
}
let sample_bg_id = BlockGroupCache::lookup(
&mut block_group_cache,
collection_name,
sample_name,
seq_name.clone(),
coordinate_frame,
);
let sample_bg_id =
sample_bg_id.expect("can't find sample bg....check this out more");
let genotype = sample.get(&header, "GT");
if genotype.is_some() {
if let Value::Genotype(genotypes) = genotype.unwrap().unwrap().unwrap() {
for (chromosome_index, gt) in genotypes.iter().enumerate() {
if gt.is_ok() {
let (allele, phasing) = gt.unwrap();
let phased = match phasing {
Phasing::Phased => 1,
Phasing::Unphased => 0,
};
let mut ref_start =
(record.variant_start().unwrap().unwrap().get() - 1) as i64;
if let Some(allele) = allele {
let allele_accession = accession_name
.clone()
.filter(|_| allele as i32 == accession_allele);
if allele != 0 {
let mut alt_seq = alt_alleles[allele - 1];
if alt_seq != "*" && alt_seq.len() < ref_seq.len() {
ref_start += 1;
alt_seq = &alt_seq[1..];
}
let sample_path = PathCache::lookup(
&mut path_cache,
sample_bg_id,
seq_name.clone(),
);
vcf_entries.push(VcfEntry {
ids: allele_accession,
block_group_id: sample_bg_id,
ref_start,
path: sample_path.clone(),
sample_name: sample_name.clone(),
alt_seq,
chromosome_index: chromosome_index as i64,
phased,
});
} else if let Some(ref_accession) = allele_accession {
let sample_path = PathCache::lookup(
&mut path_cache,
sample_bg_id,
seq_name.clone(),
);
let key = (sample_path, ref_accession.clone());
accession_cache.entry(key).or_insert_with(|| {
(
ref_start,
ref_start + record.reference_bases().len() as i64,
)
});
}
}
}
}
}
}
}
}
for vcf_entry in vcf_entries {
// * indicates this allele is removed by another deletion in the sample
if vcf_entry.alt_seq == "*" {
continue;
}
let ref_start = vcf_entry.ref_start;
let sequence =
SequenceCache::lookup(&mut sequence_cache, "DNA", vcf_entry.alt_seq.to_string());
let sequence_string = sequence.get_sequence(None, None);
let parent_path_id : i64 = *parent_block_groups.entry((collection_name, vcf_entry.path.id)).or_insert_with(|| {
let parent_bg = BlockGroup::query(conn, "select * from block_groups where collection_name = ?1 AND sample_name is null and name = ?2", rusqlite::params!(SQLValue::from(collection_name.to_string()), SQLValue::from(vcf_entry.path.name.clone())));
if parent_bg.is_empty() {
vcf_entry.path.id
} else {
let parent_path =
PathCache::lookup(&mut path_cache, parent_bg.first().unwrap().id, vcf_entry.path.name.clone());
parent_path.id
}
});
let node_id = Node::create(
conn,
sequence.hash.as_str(),
calculate_hash(&format!(
"{path_id}:{ref_start}-{ref_end}->{sequence_hash}",
path_id = parent_path_id,
sequence_hash = sequence.hash
)),
);
let change = prepare_change(
vcf_entry.block_group_id,
&vcf_entry.path,
vcf_entry.ids,
ref_start,
ref_end,
vcf_entry.chromosome_index,
vcf_entry.phased,
sequence_string.clone(),
sequence_string.len() as i64,
node_id,
);
changes
.entry((vcf_entry.path, vcf_entry.sample_name))
.or_default()
.push(change);
}
bar.inc(1);
}
bar.finish();
let bar = progress_bar.add(get_progress_bar(
changes.values().map(|c| c.len() as u64).sum::<u64>(),
));
bar.set_message("Changes applied");
let mut summary: HashMap<String, HashMap<String, i64>> = HashMap::new();
for ((path, sample_name), path_changes) in changes {
BlockGroup::insert_changes(
conn,
&path_changes,
&mut path_cache,
coordinate_frame.is_some(),
);
bar.inc(path_changes.len() as u64);
summary
.entry(sample_name)
.or_default()
.entry(path.name)
.or_insert(path_changes.len() as i64);
}
bar.finish();
for ((path, accession_name), (acc_start, acc_end)) in accession_cache.iter() {
BlockGroup::add_accession(
conn,
path,
accession_name,
*acc_start,
*acc_end,
&mut path_cache,
);
}
let mut summary_str = "".to_string();
for (sample_name, sample_changes) in summary.iter() {
summary_str.push_str(&format!("Sample {sample_name}\n"));
for (path_name, change_count) in sample_changes.iter() {
summary_str.push_str(&format!(" {path_name}: {change_count} changes.\n"));
}
}
let bar = add_saving_operation_bar(&progress_bar);
bar.set_message("Saving operation");
let op = end_operation(
conn,
operation_conn,
&mut session,
OperationInfo {
file_path: vcf_path.to_string(),
file_type: FileTypes::VCF,
description: "vcf_addition".to_string(),
},
&summary_str,
None,
)
.map_err(VcfError::OperationError);
bar.finish();
op
}
#[cfg(test)]
mod tests {
// Note this useful idiom: importing names from outer (for mod tests) scope.
use super::*;
use crate::imports::fasta::import_fasta;
use crate::models::accession::Accession;
use crate::models::metadata;
use crate::models::node::Node;
use crate::models::operations::setup_db;
use crate::test_helpers::{
get_connection, get_operation_connection, get_sample_bg, setup_gen_dir,
};
use std::collections::HashSet;
use std::path::PathBuf;
#[allow(unused_imports)]
use std::time;
#[test]
fn test_update_fasta_with_vcf() {
setup_gen_dir();
let mut vcf_path = PathBuf::from(env!("CARGO_MANIFEST_DIR"));
vcf_path.push("fixtures/simple.vcf");
let mut fasta_path = PathBuf::from(env!("CARGO_MANIFEST_DIR"));
fasta_path.push("fixtures/simple.fa");
let conn = &get_connection(None);
let db_uuid = metadata::get_db_uuid(conn);
let op_conn = &get_operation_connection(None);
setup_db(op_conn, &db_uuid);
let collection = "test".to_string();
import_fasta(
&fasta_path.to_str().unwrap().to_string(),
&collection,
None,
false,
conn,
op_conn,
)
.unwrap();
update_with_vcf(
&vcf_path.to_str().unwrap().to_string(),
&collection,
"".to_string(),
"".to_string(),
conn,
op_conn,
None,
)
.unwrap();
assert_eq!(
BlockGroup::get_all_sequences(conn, 1, false),
HashSet::from_iter(vec!["ATCGATCGATCGATCGATCGGGAACACACAGAGA".to_string()])
);
// A homozygous set of variants should only return 1 sequence
// TODO: resolve this case
// assert_eq!(
// BlockGroup::get_all_sequences(conn, 2),
// HashSet::from_iter(vec!["ATCATCGATAGAGATCGATCGGGAACACACAGAGA".to_string()])
// );
// Blockgroup 3 belongs to the `G1` genotype and has no changes
let test_bg = BlockGroup::query(
conn,
"select * from block_groups where sample_name = ?1",
rusqlite::params!(SQLValue::from("G1".to_string())),
);
assert_eq!(
BlockGroup::get_all_sequences(conn, test_bg[0].id, false),
HashSet::from_iter(vec!["ATCGATCGATCGATCGATCGGGAACACACAGAGA".to_string()])
);
// This individual is homozygous for the first variant and does not contain the second
assert_eq!(
BlockGroup::get_all_sequences(conn, 4, false),
HashSet::from_iter(vec![
"ATCGATCGATCGATCGATCGGGAACACACAGAGA".to_string(),
"ATCATCGATCGATCGATCGGGAACACACAGAGA".to_string(),
])
);
}
#[test]
fn test_update_fasta_with_vcf_custom_genotype() {
setup_gen_dir();
let mut vcf_path = PathBuf::from(env!("CARGO_MANIFEST_DIR"));
vcf_path.push("fixtures/general.vcf");
let mut fasta_path = PathBuf::from(env!("CARGO_MANIFEST_DIR"));
fasta_path.push("fixtures/simple.fa");
let conn = &get_connection(None);
let db_uuid = metadata::get_db_uuid(conn);
let op_conn = &get_operation_connection(None);
setup_db(op_conn, &db_uuid);
let collection = "test".to_string();
let db_uuid = metadata::get_db_uuid(conn);
setup_db(op_conn, &db_uuid);
import_fasta(
&fasta_path.to_str().unwrap().to_string(),
&collection,
None,
false,
conn,
op_conn,
)
.unwrap();
update_with_vcf(
&vcf_path.to_str().unwrap().to_string(),
&collection,
"0/1".to_string(),
"sample 1".to_string(),
conn,
op_conn,
None,
)
.unwrap();
assert_eq!(
BlockGroup::get_all_sequences(conn, 1, false),
HashSet::from_iter(vec!["ATCGATCGATCGATCGATCGGGAACACACAGAGA".to_string()])
);
assert_eq!(
BlockGroup::get_all_sequences(conn, 2, false),
HashSet::from_iter(
[
"ATCGATCGATAGAGATCGATCGGGAACACACAGAGA",
"ATCATCGATAGAGATCGATCGGGAACACACAGAGA",
"ATCGATCGATCGATCGATCGGGAACACACAGAGA",
"ATCATCGATCGATCGATCGGGAACACACAGAGA"
]
.iter()
.map(|v| v.to_string())
)
);
}
#[test]
fn test_handles_missing_allele() {
setup_gen_dir();
let mut vcf_path = PathBuf::from(env!("CARGO_MANIFEST_DIR"));
vcf_path.push("fixtures/simple_missing_allele.vcf");
let mut fasta_path = PathBuf::from(env!("CARGO_MANIFEST_DIR"));
fasta_path.push("fixtures/simple.fa");
let conn = &get_connection(None);
let db_uuid = metadata::get_db_uuid(conn);
let op_conn = &get_operation_connection(None);
setup_db(op_conn, &db_uuid);
let collection = "test".to_string();
let db_uuid = metadata::get_db_uuid(conn);
setup_db(op_conn, &db_uuid);
import_fasta(
&fasta_path.to_str().unwrap().to_string(),
&collection,
None,
false,
conn,
op_conn,
)
.unwrap();
update_with_vcf(
&vcf_path.to_str().unwrap().to_string(),
&collection,
"".to_string(),
"".to_string(),
conn,
op_conn,
None,
)
.unwrap();
let missing_allele_bg = BlockGroup::query(
conn,
"select * from block_groups where sample_name = ?1",
rusqlite::params!(SQLValue::from("unknown".to_string())),
);
assert_eq!(
BlockGroup::get_all_sequences(conn, missing_allele_bg[0].id, false),
HashSet::from_iter(
[
"ATCGATCGATCGATCGATCGGGAACACACAGAGA",
"ATCGATCGATAGAGATCGATCGGGAACACACAGAGA",
]
.iter()
.map(|v| v.to_string())
)
);
}
#[test]
fn test_handles_overlap_allele() {
setup_gen_dir();
let mut vcf_path = PathBuf::from(env!("CARGO_MANIFEST_DIR"));
vcf_path.push("fixtures/simple_overlap.vcf");
let mut fasta_path = PathBuf::from(env!("CARGO_MANIFEST_DIR"));
fasta_path.push("fixtures/simple.fa");
let conn = &get_connection(None);
let db_uuid = metadata::get_db_uuid(conn);
let op_conn = &get_operation_connection(None);
setup_db(op_conn, &db_uuid);
let collection = "test".to_string();
let db_uuid = metadata::get_db_uuid(conn);
setup_db(op_conn, &db_uuid);
import_fasta(
&fasta_path.to_str().unwrap().to_string(),
&collection,
None,
false,
conn,
op_conn,
)
.unwrap();
update_with_vcf(
&vcf_path.to_str().unwrap().to_string(),
&collection,
"".to_string(),
"".to_string(),
conn,
op_conn,
None,
)
.unwrap();
assert_eq!(
BlockGroup::get_all_sequences(conn, 2, false),
HashSet::from_iter(
[
"ATCGATCGATCGATCGATCGGGAACACACAGAGA",
"ATCATCGATCGATCGATCGGGAACACACAGAGA",
]
.iter()
.map(|v| v.to_string())
)
);
}
#[test]
fn test_deduplicates_nodes() {
setup_gen_dir();
let mut vcf_path = PathBuf::from(env!("CARGO_MANIFEST_DIR"));
vcf_path.push("fixtures/simple.vcf");
let mut fasta_path = PathBuf::from(env!("CARGO_MANIFEST_DIR"));
fasta_path.push("fixtures/simple.fa");
let conn = &get_connection(None);
let db_uuid = metadata::get_db_uuid(conn);
let op_conn = &get_operation_connection(None);
setup_db(op_conn, &db_uuid);
let collection = "test".to_string();
import_fasta(
&fasta_path.to_str().unwrap().to_string(),
&collection,
None,
false,
conn,
op_conn,
)
.unwrap();
update_with_vcf(
&vcf_path.to_str().unwrap().to_string(),
&collection,
"".to_string(),
"".to_string(),
conn,
op_conn,
None,
)
.unwrap();
let nodes = Node::query(conn, "select * from nodes;", rusqlite::params!());
assert_eq!(nodes.len(), 5);
assert_eq!(
update_with_vcf(
&vcf_path.to_str().unwrap().to_string(),
&collection,
"".to_string(),
"".to_string(),
conn,
op_conn,
None,
),
Err(VcfError::OperationError(OperationError::NoChanges))
)
}
#[test]
fn test_deduplicates_nodes_multiple_paths() {
setup_gen_dir();
let mut vcf_path = PathBuf::from(env!("CARGO_MANIFEST_DIR"));
vcf_path.push("fixtures/multiseq.vcf");
let mut fasta_path = PathBuf::from(env!("CARGO_MANIFEST_DIR"));
fasta_path.push("fixtures/multiseq.fa");
let conn = &get_connection("test.db");
let db_uuid = metadata::get_db_uuid(conn);
let op_conn = &get_operation_connection(None);
setup_db(op_conn, &db_uuid);
let collection = "test".to_string();
import_fasta(
&fasta_path.to_str().unwrap().to_string(),
&collection,
None,
false,
conn,
op_conn,
)
.unwrap();
assert_eq!(
Node::query(conn, "select * from nodes;", rusqlite::params!()).len(),
5
);
update_with_vcf(
&vcf_path.to_str().unwrap().to_string(),
&collection,
"".to_string(),
"".to_string(),
conn,
op_conn,
None,
)
.unwrap();
let nodes = Node::query(conn, "select * from nodes;", rusqlite::params!());
assert_eq!(nodes.len(), 8);
assert_eq!(
update_with_vcf(
&vcf_path.to_str().unwrap().to_string(),
&collection,
"".to_string(),
"".to_string(),
conn,
op_conn,
None,
),
Err(VcfError::OperationError(OperationError::NoChanges))
)
}
#[test]
#[cfg(feature = "benchmark")]
fn test_vcf_import_benchmark() {
setup_gen_dir();
let mut vcf_path = PathBuf::from(env!("CARGO_MANIFEST_DIR"));
vcf_path.push("fixtures/chr22_100k_no_samples.vcf.gz");
let mut fasta_path = PathBuf::from(env!("CARGO_MANIFEST_DIR"));
fasta_path.push("fixtures/chr22.fa.gz");
let conn = &get_connection(None);
let db_uuid = metadata::get_db_uuid(conn);
let op_conn = &get_operation_connection(None);
setup_db(op_conn, &db_uuid);
let collection = "test".to_string();
import_fasta(
&fasta_path.to_str().unwrap().to_string(),
&collection,
None,
false,
conn,
op_conn,
)
.unwrap();
let s = time::Instant::now();
update_with_vcf(
&vcf_path.to_str().unwrap().to_string(),
&collection,
"0|1".to_string(),
"test".to_string(),
conn,
op_conn,
None,
)
.unwrap();
assert!(s.elapsed().as_secs() < 20);
}
#[test]
fn test_creates_accession_paths() {
setup_gen_dir();
let mut vcf_path = PathBuf::from(env!("CARGO_MANIFEST_DIR"));
vcf_path.push("fixtures/accession.vcf");
let mut fasta_path = PathBuf::from(env!("CARGO_MANIFEST_DIR"));
fasta_path.push("fixtures/simple.fa");
let conn = &get_connection("t2.db");
let db_uuid = metadata::get_db_uuid(conn);
let op_conn = &get_operation_connection(None);
setup_db(op_conn, &db_uuid);
let collection = "test".to_string();
import_fasta(
&fasta_path.to_str().unwrap().to_string(),
&collection,
None,
false,
conn,
op_conn,
)
.unwrap();
update_with_vcf(
&vcf_path.to_str().unwrap().to_string(),
&collection,
"".to_string(),
"".to_string(),
conn,
op_conn,
None,
)
.unwrap();
assert_eq!(
Accession::query(
conn,
"select * from accessions where name = ?1;",
rusqlite::params!(SQLValue::from("del1".to_string())),
)
.len(),
1
);
assert_eq!(
Accession::query(
conn,
"select * from accessions where name = ?1;",
rusqlite::params!(SQLValue::from("lp1".to_string())),
)
.len(),
1
);
}
#[test]
#[should_panic(expected = "Unable to create accession")]
fn test_disallows_creating_accession_paths_that_exist() {
setup_gen_dir();
let mut vcf_path = PathBuf::from(env!("CARGO_MANIFEST_DIR"));
vcf_path.push("fixtures/accession.vcf");
let mut fasta_path = PathBuf::from(env!("CARGO_MANIFEST_DIR"));
fasta_path.push("fixtures/simple.fa");
let conn = &get_connection(None);
let db_uuid = metadata::get_db_uuid(conn);
let op_conn = &get_operation_connection(None);
setup_db(op_conn, &db_uuid);
let collection = "test".to_string();
import_fasta(
&fasta_path.to_str().unwrap().to_string(),
&collection,
None,
false,
conn,
op_conn,
)
.unwrap();
update_with_vcf(
&vcf_path.to_str().unwrap().to_string(),
&collection,
"".to_string(),
"".to_string(),
conn,
op_conn,
None,
)
.unwrap();
assert_eq!(
Accession::query(
conn,
"select * from accessions where name = ?1",
rusqlite::params!(SQLValue::from("lp1".to_string()))
)
.len(),
1
);
let mut vcf_path = PathBuf::from(env!("CARGO_MANIFEST_DIR"));
// This is invalid because lp1 already exists from accession.vcf
vcf_path.push("fixtures/accession_2_invalid.vcf");
update_with_vcf(
&vcf_path.to_str().unwrap().to_string(),
&collection,
"".to_string(),
"".to_string(),
conn,
op_conn,
None,
)
.unwrap();
}
#[test]
fn test_changes_in_child_samples() {
setup_gen_dir();
let f0_path = PathBuf::from(env!("CARGO_MANIFEST_DIR"))
.join("fixtures/simple_iterative_engineering_1.vcf");
let f1_path = PathBuf::from(env!("CARGO_MANIFEST_DIR"))
.join("fixtures/simple_iterative_engineering_2.vcf");
let f2_path = PathBuf::from(env!("CARGO_MANIFEST_DIR"))