()
| 1080 | |
| 1081 | #[test] |
| 1082 | fn test_create_plot_data_with_clipped_read() { |
| 1083 | let region = Region { |
| 1084 | target: "1".to_string(), |
| 1085 | start: 1, |
| 1086 | end: 200, |
| 1087 | }; |
| 1088 | let result = create_plot_data( |
| 1089 | "tests/sample_3/NA12878_with_clipping_read.bam", |
| 1090 | "tests/sample_3/ref.fa", |
| 1091 | ®ion, |
| 1092 | 500, |
| 1093 | None, |
| 1094 | 0.0, |
| 1095 | ); |
| 1096 | assert!(result.is_ok()); |
| 1097 | } |
| 1098 | |
| 1099 | #[test] |
| 1100 | fn test_plot_cigar_from_str() { |
nothing calls this directly
no test coverage detected