Skip to content

Latest commit

 

History

History
16 lines (11 loc) · 479 Bytes

README.md

File metadata and controls

16 lines (11 loc) · 479 Bytes

exon-duckdb

Exon-DuckDB is a DuckDB Extension for Exon that allows for users to use exon functionality through DuckDB.

For example, you can use the following query count the sequences in a FASTA file:

LOAD exon;

SELECT COUNT(*)
FROM read_fasta('file.fasta');

You can read more about how to use Exon-DuckDB in the documentation.