exon 0.32.4

A platform for scientific data processing and analysis.
Documentation
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
// Copyright 2023 WHERE TRUE Technologies.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//     http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

use std::{collections::HashMap, sync::Arc, vec};

use datafusion::{
    catalog::TableProviderFactory,
    datasource::{
        file_format::file_compression_type::FileCompressionType, listing::ListingTableUrl,
    },
    error::{DataFusionError, Result},
    execution::{
        object_store::ObjectStoreUrl, runtime_env::RuntimeEnv, session_state::SessionStateBuilder,
    },
    logical_expr::LogicalPlan,
    prelude::{DataFrame, SessionConfig, SessionContext},
};
#[cfg(feature = "deltalake")]
use deltalake::{aws::register_handlers, delta_datafusion::DeltaTableFactory, open_table};

use crate::{
    datasources::{
        bam::table_provider::{ListingBAMTable, ListingBAMTableOptions},
        bcf::table_provider::{ListingBCFTable, ListingBCFTableOptions},
        bed::{
            table_provider::{ListingBEDTable, ListingBEDTableOptions},
            BEDOptions,
        },
        bigwig,
        cram::table_provider::{ListingCRAMTable, ListingCRAMTableConfig, ListingCRAMTableOptions},
        exon_listing_table_options::ExonListingConfig,
        genbank::table_provider::{ListingGenbankTable, ListingGenbankTableOptions},
        gff::table_provider::{ListingGFFTable, ListingGFFTableOptions},
        gtf::table_provider::{ListingGTFTable, ListingGTFTableOptions},
        hmmdomtab::table_provider::{ListingHMMDomTabTable, ListingHMMDomTabTableOptions},
        mzml::table_provider::{ListingMzMLTable, ListingMzMLTableOptions},
        sam::table_provider::{ListingSAMTable, ListingSAMTableOptions},
        sdf::ListingSDFTableOptions,
        vcf::ListingVCFTable,
    },
    error::ExonError,
    logical_plan::{DfExtensionNode, ExonDataSinkLogicalPlanNode, ExonLogicalPlan},
    sql::{ExonParser, ExonStatement},
    udfs::{
        register_bigwig_region_filter_udf, sam::cram_region_filter::register_cram_region_filter_udf,
    },
};

use object_store::local::LocalFileSystem;

#[cfg(feature = "mzml")]
use crate::datasources::mzml::MzMLScanFunction;

#[cfg(feature = "fcs")]
use crate::datasources::fcs::FCSScanFunction;

#[cfg(feature = "genbank")]
use crate::datasources::genbank::GenbankScanFunction;

use crate::{
    datasources::{
        bam::{BAMIndexedScanFunction, BAMScanFunction},
        bcf::BCFScanFunction,
        bed::BEDScanFunction,
        fasta::{
            table_provider::{ListingFASTATable, ListingFASTATableOptions},
            FastaIndexedScanFunction, FastaScanFunction,
        },
        fastq::{
            table_provider::{ListingFASTQTable, ListingFASTQTableOptions},
            FastqScanFunction,
        },
        gff::{GFFIndexedScanFunction, GFFScanFunction},
        gtf::GTFScanFunction,
        hmmdomtab::HMMDomTabScanFunction,
        sam::SAMScanFunction,
        vcf::{ListingVCFTableOptions, VCFIndexedScanFunction, VCFScanFunction},
        ExonFileType, ExonListingTableFactory,
    },
    new_exon_config,
    physical_plan::planner::ExonQueryPlanner,
    udfs::{
        gff::gff_region_filter::register_gff_region_filter_udf,
        sam::bam_region_filter::register_bam_region_filter_udf,
        vcf::vcf_region_filter::register_vcf_region_filter_udf,
    },
};

use super::function_factory::ExonFunctionFactory;

/// Exon session context.
pub struct ExonSession {
    /// The Exon session context.
    pub session: SessionContext,
}

impl ExonSession {
    /// Create a new Exon session context.
    pub fn new(session: SessionContext) -> Self {
        Self { session }
    }

    /// Create a new Exon based [`SessionContext`].
    pub fn new_exon() -> crate::Result<Self> {
        let exon_config = new_exon_config();
        Self::with_config_exon(exon_config)
    }

    /// Create a new Exon based [`SessionContext`] with the given config.
    pub fn with_config_exon(config: SessionConfig) -> crate::Result<Self> {
        let runtime = Arc::new(RuntimeEnv::default());
        Self::with_config_rt_exon(config, runtime)
    }

    /// Create a new Exon based [`SessionContext`] with the given config and runtime.
    pub fn with_config_rt_exon(
        config: SessionConfig,
        runtime: Arc<RuntimeEnv>,
    ) -> crate::Result<Self> {
        let sources = vec![
            "BAM",
            "BCF",
            "BED",
            "CRAM",
            "FAA",
            "FASTA",
            "FASTQ",
            "FNA",
            "FQ",
            "GENBANK",
            "GFF",
            "GTF",
            "HMMDOMTAB",
            "INDEXED_GFF",
            "INDEXED_BAM",
            "INDEXED_VCF",
            "SAM",
            "BIGWIG_ZOOM",
            "BIGWIG_VALUE",
            "VCF",
            #[cfg(feature = "mzml")]
            "MZML",
            #[cfg(feature = "fcs")]
            "FCS",
            "SDF",
        ];

        let mut state_builder = SessionStateBuilder::new()
            .with_default_features()
            .with_config(config)
            .with_runtime_env(runtime)
            .with_function_factory(Some(Arc::new(ExonFunctionFactory::default())))
            .with_query_planner(Arc::new(ExonQueryPlanner::default()));

        let table_factories =
            state_builder
                .table_factories()
                .as_mut()
                .ok_or(ExonError::Configuration(
                    "Could not configure exon state".to_string(),
                ))?;

        for source in sources {
            table_factories.insert(
                source.to_string(),
                Arc::new(ExonListingTableFactory::default()) as Arc<dyn TableProviderFactory>,
            );
        }

        #[cfg(feature = "deltalake")]
        {
            register_handlers(None);
            table_factories.insert("DELTATABLE".to_string(), Arc::new(DeltaTableFactory {}));
        }

        let state = state_builder.build();

        let ctx = SessionContext::new_with_state(state);
        ctx.register_table_options_extension(BEDOptions::default());

        // Register the mass spec UDFs
        #[cfg(feature = "mzml")]
        crate::udfs::massspec::register_udfs(&ctx);

        crate::udfs::sequence::register_udfs(&ctx);
        crate::udfs::sam::samflags::register_udfs(&ctx);
        crate::udfs::vcf::register_vcf_udfs(&ctx);

        // Register BAM region filter UDF
        register_bam_region_filter_udf(&ctx);

        // Register CRAM region filter UDF
        register_cram_region_filter_udf(&ctx);

        // Register VCF region filter UDF
        register_vcf_region_filter_udf(&ctx);

        // Register GFF region filter UDF
        register_gff_region_filter_udf(&ctx);

        // Register BigWig region filter UDF
        register_bigwig_region_filter_udf(&ctx);

        // Register UDTFs
        ctx.register_udtf("fasta_scan", Arc::new(FastaScanFunction::new(ctx.clone())));
        ctx.register_udtf(
            "fasta_indexed_scan",
            Arc::new(FastaIndexedScanFunction::new(ctx.clone())),
        );
        ctx.register_udtf("fastq_scan", Arc::new(FastqScanFunction::new(ctx.clone())));
        ctx.register_udtf("gff_scan", Arc::new(GFFScanFunction::new(ctx.clone())));
        ctx.register_udtf(
            "gff_indexed_scan",
            Arc::new(GFFIndexedScanFunction::new(ctx.clone())),
        );
        ctx.register_udtf("gtf_scan", Arc::new(GTFScanFunction::new(ctx.clone())));
        ctx.register_udtf("bed_scan", Arc::new(BEDScanFunction::new(ctx.clone())));
        ctx.register_udtf(
            "hmm_dom_tab_scan",
            Arc::new(HMMDomTabScanFunction::default()),
        );

        #[cfg(feature = "genbank")]
        ctx.register_udtf(
            "genbank_scan",
            Arc::new(GenbankScanFunction::new(ctx.clone())),
        );

        #[cfg(feature = "fcs")]
        ctx.register_udtf("fcs_scan", Arc::new(FCSScanFunction::new(ctx.clone())));

        #[cfg(feature = "mzml")]
        ctx.register_udtf("mzml_scan", Arc::new(MzMLScanFunction::new(ctx.clone())));

        ctx.register_udtf("bam_scan", Arc::new(BAMScanFunction::new(ctx.clone())));
        ctx.register_udtf(
            "bam_indexed_scan",
            Arc::new(BAMIndexedScanFunction::new(ctx.clone())),
        );

        ctx.register_udtf("sam_scan", Arc::new(SAMScanFunction::new(ctx.clone())));
        ctx.register_udtf("vcf_scan", Arc::new(VCFScanFunction::new(ctx.clone())));
        ctx.register_udtf(
            "vcf_indexed_scan",
            Arc::new(VCFIndexedScanFunction::new(ctx.clone())),
        );
        ctx.register_udtf("bcf_scan", Arc::new(BCFScanFunction::new(ctx.clone())));

        // Register the local file system by default
        ctx.runtime_env().register_object_store(
            ObjectStoreUrl::local_filesystem().as_ref(),
            Arc::new(LocalFileSystem::new()),
        );

        Ok(Self::new(ctx))
    }

    fn exon_sql_to_statement(&self, sql: &str) -> crate::Result<ExonStatement> {
        let mut exon_parser = ExonParser::new(sql)?;

        exon_parser.parse_statement()
    }

    /// Convert Exon SQL to a logical plan.
    async fn exon_statement_to_logical_plan(
        &self,
        stmt: ExonStatement,
    ) -> crate::Result<ExonLogicalPlan> {
        match stmt {
            ExonStatement::DFStatement(stmt) => {
                let plan = self.session.state().statement_to_plan(*stmt).await?;

                Ok(ExonLogicalPlan::DataFusion(plan))
            }
            ExonStatement::ExonCopyTo(stmt) => {
                let node = ExonDataSinkLogicalPlanNode::from(stmt);
                let extension = node.into_extension();
                let plan = LogicalPlan::Extension(extension);

                Ok(ExonLogicalPlan::Exon(plan))
            }
        }
    }

    /// Execute an Exon SQL statement.
    pub async fn sql(&self, sql: &str) -> crate::Result<DataFrame> {
        let statement = self.exon_sql_to_statement(sql)?;
        let plan = self.exon_statement_to_logical_plan(statement).await?;

        match plan {
            ExonLogicalPlan::DataFusion(plan) => {
                let df = self.session.execute_logical_plan(plan).await?;
                Ok(df)
            }
            ExonLogicalPlan::Exon(plan) => {
                let df = DataFrame::new(self.session.state(), plan);
                Ok(df)
            }
        }
    }

    /// Read a BAM file.
    pub async fn read_bam(
        &self,
        table_path: &str,
        options: ListingBAMTableOptions,
    ) -> crate::Result<DataFrame> {
        let table_path = ListingTableUrl::parse(table_path)?;

        let table_schema = options
            .infer_schema(&self.session.state(), &table_path)
            .await?;

        let config = ExonListingConfig::new_with_options(table_path, options);
        let table = ListingBAMTable::new(config, table_schema);

        let table = self.session.read_table(Arc::new(table))?;

        Ok(table)
    }

    /// Read a BCF file.
    #[cfg(feature = "fcs")]
    pub async fn read_fcs(
        &self,
        table_path: &str,
        options: crate::datasources::fcs::table_provider::ListingFCSTableOptions,
    ) -> Result<DataFrame, ExonError> {
        use crate::datasources::fcs::table_provider::ListingFCSTableConfig;

        let table_path = ListingTableUrl::parse(table_path)?;

        let table_schema = options
            .infer_schema(&self.session.state(), &table_path)
            .await?;

        let config = ListingFCSTableConfig::new(table_path, options);
        let table = crate::datasources::fcs::table_provider::ListingFCSTable::try_new(
            config,
            table_schema,
        )?;

        let table = self.session.read_table(Arc::new(table))?;

        Ok(table)
    }

    /// Read a CRAM file.
    pub async fn read_cram(
        &self,
        table_path: &str,
        options: ListingCRAMTableOptions,
    ) -> crate::Result<DataFrame> {
        let table_path = ListingTableUrl::parse(table_path)?;

        let table_schema = options
            .infer_schema(&self.session.state(), &table_path)
            .await?;

        // TODO: refactor this to use the new config setup
        let config = ListingCRAMTableConfig::new(table_path, options);

        let table = ListingCRAMTable::try_new(config, table_schema)?;
        let table = self.session.read_table(Arc::new(table))?;

        Ok(table)
    }

    /// Read a GTF file.
    pub async fn read_gtf(
        &self,
        table_path: &str,
        options: ListingGTFTableOptions,
    ) -> crate::Result<DataFrame> {
        let table_path = ListingTableUrl::parse(table_path)?;

        let table_schema = options.infer_schema();

        let config = ExonListingConfig::new_with_options(table_path, options);
        let table = ListingGTFTable::new(config, table_schema);

        let table = self.session.read_table(Arc::new(table))?;

        Ok(table)
    }

    /// Read a Genbank file.
    pub async fn read_genbank(
        &self,
        table_path: &str,
        options: ListingGenbankTableOptions,
    ) -> crate::Result<DataFrame> {
        let table_path = ListingTableUrl::parse(table_path)?;

        let table_schema = options.infer_schema().await?;

        let config = ExonListingConfig::new_with_options(table_path, options);
        let table = ListingGenbankTable::new(config, table_schema);

        let table = self.session.read_table(Arc::new(table))?;

        Ok(table)
    }

    /// Read a HMM Dom Tab file.
    pub async fn read_hmm_dom_tab(
        &self,
        table_path: &str,
        options: ListingHMMDomTabTableOptions,
    ) -> crate::Result<DataFrame> {
        let table_path = ListingTableUrl::parse(table_path)?;

        let table_schema = options.infer_schema().await?;

        let config = ExonListingConfig::new_with_options(table_path, options);
        let table = ListingHMMDomTabTable::new(config, table_schema);

        let table = self.session.read_table(Arc::new(table))?;

        Ok(table)
    }

    /// Read a MzML file.
    pub async fn read_mzml(
        &self,
        table_path: &str,
        options: ListingMzMLTableOptions,
    ) -> crate::Result<DataFrame> {
        let table_path = ListingTableUrl::parse(table_path)?;

        let table_schema = options.infer_schema().await?;

        let config = ExonListingConfig::new_with_options(table_path, options);
        let table = ListingMzMLTable::new(config, table_schema);

        let table = self.session.read_table(Arc::new(table))?;

        Ok(table)
    }

    /// Read a BED file.
    pub async fn read_bed(
        &self,
        table_path: &str,
        options: ListingBEDTableOptions,
    ) -> crate::Result<DataFrame> {
        let table_path = ListingTableUrl::parse(table_path)?;

        let table_schema = options.infer_schema()?;

        let config = ExonListingConfig::new_with_options(table_path, options);
        let table = ListingBEDTable::new(config, table_schema);

        let table = self.session.read_table(Arc::new(table))?;

        Ok(table)
    }

    /// Read a BCF file.
    pub async fn read_bcf(
        &self,
        table_path: &str,
        options: ListingBCFTableOptions,
    ) -> crate::Result<DataFrame> {
        let table_path = ListingTableUrl::parse(table_path)?;

        let table_schema = options
            .infer_schema(&self.session.state(), &table_path)
            .await?;

        let config = ExonListingConfig::new_with_options(table_path, options);
        let table = ListingBCFTable::new(config, table_schema);

        let table = self.session.read_table(Arc::new(table))?;

        Ok(table)
    }

    /// Read a GFF file.
    pub async fn read_gff(
        &self,
        table_path: &str,
        options: ListingGFFTableOptions,
    ) -> crate::Result<DataFrame> {
        let table_path = ListingTableUrl::parse(table_path)?;

        let table_schema = options.infer_schema().await?;

        let config = ExonListingConfig::new_with_options(table_path, options);
        let table = ListingGFFTable::new(config, table_schema);

        let table = self.session.read_table(Arc::new(table))?;

        Ok(table)
    }

    /// Read a SAM file.
    pub async fn read_sam(
        &self,
        table_path: &str,
        options: ListingSAMTableOptions,
    ) -> crate::Result<DataFrame> {
        let table_path = ListingTableUrl::parse(table_path)?;

        let table_schema = options
            .infer_schema(&self.session.state(), &table_path)
            .await?;

        let config = ExonListingConfig::new_with_options(table_path, options);
        let table = ListingSAMTable::new(config, table_schema);

        let table = self.session.read_table(Arc::new(table))?;

        Ok(table)
    }

    /// Read a VCF file.
    pub async fn read_vcf(
        &self,
        table_path: &str,
        options: ListingVCFTableOptions,
    ) -> crate::Result<DataFrame> {
        let table_path = ListingTableUrl::parse(table_path)?;

        let table_schema = options
            .infer_schema(&self.session.state(), &table_path)
            .await?;

        let config = ExonListingConfig::new_with_options(table_path, options);
        let table = ListingVCFTable::new(config, table_schema);

        let table = self.session.read_table(Arc::new(table))?;

        Ok(table)
    }

    /// Read an Exon table.
    pub async fn read_exon_table(
        &self,
        table_path: &str,
        file_type: ExonFileType,
        file_compression_type: Option<FileCompressionType>,
    ) -> crate::Result<DataFrame> {
        let session_state = self.session.state();

        let file_compression_type =
            file_compression_type.unwrap_or(FileCompressionType::UNCOMPRESSED);

        let factory = ExonListingTableFactory::default();

        let table = factory
            .create_from_file_type(
                &session_state,
                file_type,
                file_compression_type,
                table_path.to_string(),
                Vec::new(),
                &HashMap::new(),
            )
            .await?;

        let table = self.session.read_table(table)?;

        Ok(table)
    }

    /// Read a Delta Lake table.
    #[cfg(feature = "deltalake")]
    pub async fn read_deltalake(&self, table_path: &str) -> Result<DataFrame, ExonError> {
        let table = open_table(table_path).await.map_err(|e| {
            ExonError::ExecutionError(format!("Error opening Delta Lake table: {}", e))
        })?;

        let df = self.session.read_table(Arc::new(table))?;

        Ok(df)
    }

    /// Read a FASTA file.
    pub async fn read_fasta(
        &self,
        table_path: &str,
        options: ListingFASTATableOptions,
    ) -> Result<DataFrame, ExonError> {
        let table_path = ListingTableUrl::parse(table_path)?;

        let table_schema = options.infer_schema().await?;

        let config = ExonListingConfig::new_with_options(table_path, options);
        let table = ListingFASTATable::try_new(config, table_schema)?;

        let table = self.session.read_table(Arc::new(table))?;

        Ok(table)
    }

    /// Read an SDF file.
    pub async fn read_sdf(
        &self,
        table_path: &str,
        options: ListingSDFTableOptions,
    ) -> Result<DataFrame, ExonError> {
        let table_path = ListingTableUrl::parse(table_path)?;

        let table_schema = options
            .infer_schema(&self.session.state(), &table_path)
            .await?;

        let config = ExonListingConfig::new_with_options(table_path, options);
        let table = crate::datasources::sdf::ListingSDFTable::new(config, table_schema);

        let table = self.session.read_table(Arc::new(table))?;

        Ok(table)
    }

    /// Read a BigWig zoom file.
    pub async fn read_bigwig_zoom(
        &self,
        table_path: &str,
        options: bigwig::zoom::ListingTableOptions,
    ) -> Result<DataFrame, ExonError> {
        let table_path = ListingTableUrl::parse(table_path)?;

        let table_schema = options.infer_schema()?;

        let config = bigwig::zoom::ListingTableConfig::new(table_path, options);
        let table = bigwig::zoom::ListingTable::try_new(config, table_schema)?;

        let table = self.session.read_table(Arc::new(table))?;

        Ok(table)
    }

    /// Read a BigWig view file.
    pub async fn read_bigwig_view(
        &self,
        table_path: &str,
        options: bigwig::value::ListingTableOptions,
    ) -> Result<DataFrame, ExonError> {
        let table_path = ListingTableUrl::parse(table_path)?;

        let table_schema = options.infer_schema()?;

        let config = ExonListingConfig::new_with_options(table_path, options);
        let table = bigwig::value::ListingTable::new(config, table_schema);

        let table = self.session.read_table(Arc::new(table))?;

        Ok(table)
    }

    /// Read a FASTQ file.
    pub async fn read_fastq(
        &self,
        table_path: &str,
        options: ListingFASTQTableOptions,
    ) -> Result<DataFrame, ExonError> {
        let table_path = ListingTableUrl::parse(table_path)?;

        let table_schema = options.infer_schema();

        let config = ExonListingConfig::new_with_options(table_path, options);
        let table = ListingFASTQTable::try_new(config, table_schema)?;

        let table = self.session.read_table(Arc::new(table))?;

        Ok(table)
    }

    /// Register an Exon table.
    pub async fn register_exon_table(
        &self,
        name: &str,
        table_path: &str,
        file_type: &str,
    ) -> Result<(), DataFusionError> {
        let sql_statement = format!(
            "CREATE EXTERNAL TABLE {} STORED AS {} LOCATION '{}'",
            name, file_type, table_path
        );

        self.session.sql(&sql_statement).await?;

        Ok(())
    }

    /// Read an inferred Exon table.
    pub async fn read_inferred_exon_table(&self, table_path: &str) -> Result<DataFrame, ExonError> {
        let session_state = self.session.state();

        let (file_type, file_compress_type) =
            crate::datasources::infer_file_type_and_compression(table_path)?;

        let table = ExonListingTableFactory::default()
            .create_from_file_type(
                &session_state,
                file_type,
                file_compress_type,
                table_path.to_string(),
                Vec::new(),
                &HashMap::new(),
            )
            .await?;

        let table = self.session.read_table(table)?;

        Ok(table)
    }
}

#[cfg(test)]
mod tests {
    use datafusion::datasource::file_format::file_compression_type::FileCompressionType;

    use crate::{
        datasources::{
            bcf::table_provider::ListingBCFTableOptions, bigwig,
            cram::table_provider::ListingCRAMTableOptions,
            fasta::table_provider::ListingFASTATableOptions,
            fastq::table_provider::ListingFASTQTableOptions, sdf::ListingSDFTableOptions,
        },
        session_context::exon_context_ext::ExonSession,
        ExonRuntimeEnvExt,
    };

    #[tokio::test]
    async fn test_read_sdf() -> Result<(), Box<dyn std::error::Error>> {
        let ctx = ExonSession::new_exon()?;

        let sdf_path = exon_test::test_path("sdf", "tox_benchmark_N6512.sdf");

        let df = ctx
            .read_sdf(
                sdf_path.to_str().unwrap(),
                ListingSDFTableOptions::default(),
            )
            .await?;

        assert_eq!(df.count().await?, 6512);

        Ok(())
    }

    #[tokio::test]
    async fn test_read_fastq() -> Result<(), Box<dyn std::error::Error>> {
        let ctx = ExonSession::new_exon()?;

        let fastq_path = exon_test::test_path("fastq", "test.fq");

        let df = ctx
            .read_fastq(
                fastq_path.to_str().unwrap(),
                ListingFASTQTableOptions::default().with_some_file_extension(Some("fq")),
            )
            .await?;

        assert_eq!(df.count().await?, 2);

        let df = ctx
            .read_fastq(
                fastq_path.parent().ok_or("No Parent")?.to_str().unwrap(),
                ListingFASTQTableOptions::default().with_some_file_extension(Some("fq")),
            )
            .await?;

        assert_eq!(df.count().await?, 2);

        Ok(())
    }

    #[tokio::test]
    async fn test_read_fastq_gzip() -> Result<(), Box<dyn std::error::Error>> {
        let ctx = ExonSession::new_exon()?;

        let fastq_path = exon_test::test_path("fastq", "test.fq.gz");

        let options = ListingFASTQTableOptions::new(FileCompressionType::GZIP)
            .with_some_file_extension(Some("fq"));

        let df = ctx
            .read_fastq(fastq_path.to_str().unwrap(), options)
            .await?;

        assert_eq!(df.count().await?, 2);

        Ok(())
    }

    #[tokio::test]
    async fn test_read_fasta() -> Result<(), Box<dyn std::error::Error>> {
        let ctx = ExonSession::new_exon()?;

        let fasta_path = exon_test::test_path("fasta", "test.fa");

        let df = ctx
            .read_fasta(
                fasta_path.to_str().unwrap(),
                ListingFASTATableOptions::default().with_some_file_extension(Some("fa")),
            )
            .await?;

        assert_eq!(df.count().await?, 2);

        Ok(())
    }

    #[tokio::test]
    async fn test_fasta_round_trip() -> Result<(), Box<dyn std::error::Error>> {
        let ctx = ExonSession::new_exon()?;

        let fasta_path = exon_test::test_path("fasta", "test.fasta");

        let sql = format!(
            "CREATE EXTERNAL TABLE test_fasta STORED AS FASTA LOCATION '{}'",
            fasta_path.to_str().unwrap()
        );
        ctx.sql(&sql).await?.collect().await.unwrap();

        let temp_dir = std::env::temp_dir();
        let temp_path = temp_dir.join("test.fasta");

        let sql = format!(
            "COPY (SELECT id, description, sequence FROM test_fasta) TO '{}' STORED AS FASTA",
            temp_path.display()
        );
        ctx.sql(&sql).await?.collect().await?;

        let df = ctx
            .read_fasta(
                temp_path.to_str().unwrap(),
                ListingFASTATableOptions::default(),
            )
            .await?;

        assert_eq!(df.count().await?, 2);

        // delete the temp file
        std::fs::remove_file(temp_path)?;

        let temp_path = temp_dir.join("test.fasta.gz");
        let sql = format!(
            "COPY test_fasta TO '{}' STORED AS FASTA OPTIONS(compression 'gzip')",
            temp_path.display()
        );

        ctx.sql(&sql).await?.collect().await?;

        let df = ctx
            .read_fasta(
                temp_path.to_str().unwrap(),
                ListingFASTATableOptions::new(FileCompressionType::GZIP),
            )
            .await?;

        assert_eq!(df.count().await?, 2);

        Ok(())
    }

    #[tokio::test]
    async fn test_bigwig_zoom_file() -> Result<(), Box<dyn std::error::Error>> {
        let ctx = ExonSession::new_exon()?;

        let bigwig_path = exon_test::test_path("bigwig", "test.bw");

        let df = ctx
            .read_bigwig_zoom(
                bigwig_path.to_str().unwrap(),
                bigwig::zoom::ListingTableOptions::new(400),
            )
            .await?;

        assert_eq!(df.count().await?, 2);

        Ok(())
    }

    #[cfg(feature = "deltalake")]
    #[tokio::test]
    async fn test_read_deltalake() -> Result<(), Box<dyn std::error::Error>> {
        let ctx = ExonSession::new_exon()?;

        let path = exon_test::test_listing_table_url("delta");

        let df = ctx.read_deltalake(path.as_str()).await?;

        assert_eq!(df.count().await?, 2);

        Ok(())
    }

    #[tokio::test]
    async fn test_read_bigwig_view_file() -> Result<(), Box<dyn std::error::Error>> {
        let ctx = ExonSession::new_exon()?;

        let bigwig_path = exon_test::test_path("bigwig", "test.bw");

        let df = ctx
            .read_bigwig_view(
                bigwig_path.to_str().unwrap(),
                bigwig::value::ListingTableOptions::default(),
            )
            .await?;
        assert_eq!(df.count().await?, 6);

        Ok(())
    }

    #[tokio::test]
    async fn test_read_fasta_s3() -> Result<(), Box<dyn std::error::Error>> {
        let ctx = ExonSession::new_exon()?;

        ctx.session
            .runtime_env()
            .register_s3_object_store(&url::Url::parse("s3://test-bucket")?)
            .await?;

        let df = ctx
            .read_fasta(
                "s3://test-bucket/test.fa",
                ListingFASTATableOptions::default().with_some_file_extension(Some("fa")),
            )
            .await?;

        assert_eq!(df.count().await?, 2);

        Ok(())
    }

    #[tokio::test]
    async fn test_read_fasta_dir() -> Result<(), Box<dyn std::error::Error>> {
        let ctx = ExonSession::new_exon()?;

        let fasta_path = exon_test::test_path("fa", "test.fa");
        let fasta_path = fasta_path.parent().ok_or("No parent")?;

        let df = ctx
            .read_fasta(
                fasta_path.to_str().unwrap(),
                ListingFASTATableOptions::default().with_some_file_extension(Some("fa")),
            )
            .await?;

        assert_eq!(df.count().await?, 4);

        let df = ctx
            .read_fasta(
                fasta_path.to_str().unwrap(),
                ListingFASTATableOptions::new(FileCompressionType::GZIP)
                    .with_some_file_extension(Some("fa")),
            )
            .await?;

        assert_eq!(df.count().await?, 4);
        Ok(())
    }

    #[tokio::test]
    async fn test_cram_file() -> Result<(), Box<dyn std::error::Error>> {
        let ctx = ExonSession::new_exon()?;

        let cram_path = exon_test::test_path("cram", "test_input_1_a.cram");

        let df = ctx
            .read_cram(
                cram_path.to_str().unwrap(),
                ListingCRAMTableOptions::default(),
            )
            .await?;

        assert_eq!(df.count().await?, 15);

        let cram_path = exon_test::test_path("two-cram", "twolib.sorted.cram");
        let fasta_reference = exon_test::test_path("two-cram", "rand1k.fa");

        let df = ctx
            .read_cram(
                cram_path.to_str().unwrap(),
                ListingCRAMTableOptions::default()
                    .with_fasta_reference(fasta_reference.to_str().map(|s| s.to_string())),
            )
            .await?;

        assert_eq!(df.count().await?, 4);

        let region = "1".parse()?;

        let df = ctx
            .read_cram(
                cram_path.to_str().unwrap(),
                ListingCRAMTableOptions::default()
                    .with_fasta_reference(fasta_reference.to_str().map(|s| s.to_string()))
                    .with_indexed(true)
                    .with_region(Some(region)),
            )
            .await?;

        assert_eq!(df.count().await?, 0);

        Ok(())
    }

    #[cfg(feature = "fcs")]
    #[tokio::test]
    async fn test_read_fcs() -> Result<(), Box<dyn std::error::Error>> {
        let ctx = ExonSession::new_exon()?;

        let fcs_path = exon_test::test_path("fcs", "Guava Muse.fcs");

        let df = ctx
            .read_fcs(
                fcs_path.to_str().unwrap(),
                crate::datasources::fcs::table_provider::ListingFCSTableOptions::new(
                    FileCompressionType::UNCOMPRESSED,
                ),
            )
            .await?;

        assert_eq!(df.count().await?, 108);

        Ok(())
    }

    #[tokio::test]
    async fn test_read_fasta_gzip() -> Result<(), Box<dyn std::error::Error>> {
        let ctx = ExonSession::new_exon()?;

        let fasta_path = exon_test::test_path("fasta", "test.fa.gz");

        let options = ListingFASTATableOptions::new(FileCompressionType::GZIP)
            .with_some_file_extension(Some("fa"));

        let df = ctx
            .read_fasta(fasta_path.to_str().unwrap(), options)
            .await?;

        assert_eq!(df.count().await?, 2);

        Ok(())
    }

    #[tokio::test]
    async fn test_bcf_file() -> Result<(), Box<dyn std::error::Error>> {
        let ctx = ExonSession::new_exon()?;

        let bcf_path = exon_test::test_path("bcf", "index.bcf");

        let df = ctx
            .read_bcf(
                bcf_path.to_str().unwrap(),
                ListingBCFTableOptions::default(),
            )
            .await?;

        assert_eq!(df.count().await?, 621);

        Ok(())
    }

    #[tokio::test]
    async fn test_bcf_file_with_region() -> Result<(), Box<dyn std::error::Error>> {
        let ctx = ExonSession::new_exon()?;

        let bcf_path = exon_test::test_path("bcf", "index.bcf");

        let region = "1".parse()?;

        let df = ctx
            .read_bcf(
                bcf_path.to_str().unwrap(),
                ListingBCFTableOptions::default().with_regions(vec![region]),
            )
            .await?;

        assert_eq!(df.count().await?, 191);

        Ok(())
    }
}