home.social

#htslib — Public Fediverse posts

Live and recent posts from across the Fediverse tagged #htslib, aggregated by home.social.

  1. #Duckdb #htslib #Genomics #Bioinformatics #RStats duckths: Read HTS (VCF/BCF/BAM/CRAM/FASTA/FASTQ/GTF/GFF) files in DuckDB via htslib Rduckhts: 'DuckDB' High Throughput Sequencing File Formats Reader Extension genomic.social/@bioinfhotep...

    SMT (@[email protected]...

  2. #Duckdb #htslib #Genomics #Bioinformatics #RStats duckths: Read HTS (VCF/BCF/BAM/CRAM/FASTA/FASTQ/GTF/GFF) files in DuckDB via htslib Rduckhts: 'DuckDB' High Throughput Sequencing File Formats Reader Extension genomic.social/@bioinfhotep...

    SMT (@[email protected]...

  3. #Genomics #Bioinformatics
    Release of duckhts: #htslib based #Duckdb Extension for High Throughput Sequencing File Formats
    duckdb.org/community_extension
    Allied Self contained #Rstats package Rduckhts : rgenomicsetl.r-universe.dev/Rd

    For now the lifecycle of the APIs (Duckdb C API extension and R package) are "experimental". They are mostly targeted to some ETL use cases, but will add some some useful scalar and aggregation functions including Heng Li's C Genomic ranges

    Feedback and testing welcome !

  4. #Genomics #Bioinformatics
    Release of duckhts: #htslib based #Duckdb Extension for High Throughput Sequencing File Formats
    duckdb.org/community_extension
    Allied Self contained #Rstats package Rduckhts : rgenomicsetl.r-universe.dev/Rd

    For now the lifecycle of the APIs (Duckdb C API extension and R package) are "experimental". They are mostly targeted to some ETL use cases, but will add some some useful scalar and aggregation functions including Heng Li's C Genomic ranges

    Feedback and testing welcome !

  5. #Genomics #Bioinformatics
    Release of duckhts: #htslib based #Duckdb Extension for High Throughput Sequencing File Formats
    duckdb.org/community_extension
    Allied Self contained #Rstats package Rduckhts : rgenomicsetl.r-universe.dev/Rd

    For now the lifecycle of the APIs (Duckdb C API extension and R package) are "experimental". They are mostly targeted to some ETL use cases, but will add some some useful scalar and aggregation functions including Heng Li's C Genomic ranges

    Feedback and testing welcome !

  6. #Genomics #Bioinformatics
    Release of duckhts: #htslib based #Duckdb Extension for High Throughput Sequencing File Formats
    duckdb.org/community_extension
    Allied Self contained #Rstats package Rduckhts : rgenomicsetl.r-universe.dev/Rd

    For now the lifecycle of the APIs (Duckdb C API extension and R package) are "experimental". They are mostly targeted to some ETL use cases, but will add some some useful scalar and aggregation functions including Heng Li's C Genomic ranges

    Feedback and testing welcome !

  7. #Genomics #Bioinformatics
    Release of duckhts: #htslib based #Duckdb Extension for High Throughput Sequencing File Formats
    duckdb.org/community_extension
    Allied Self contained #Rstats package Rduckhts : rgenomicsetl.r-universe.dev/Rd

    For now the lifecycle of the APIs (Duckdb C API extension and R package) are "experimental". They are mostly targeted to some ETL use cases, but will add some some useful scalar and aggregation functions including Heng Li's C Genomic ranges

    Feedback and testing welcome !

  8. #RStats Rduckhts: 'DuckDB' 'HTS' File Reader Extension for 'R' Sitting on the shoulders of the great #htslib API and the duckdb C API Package : rgenomicsetl.r-universe.dev/Rduckhts

  9. #RStats Rduckhts: 'DuckDB' 'HTS' File Reader Extension for 'R' Sitting on the shoulders of the great #htslib API and the duckdb C API Package : rgenomicsetl.r-universe.dev/Rduckhts

  10. #RStats Rduckhts: 'DuckDB' 'HTS' File Reader Extension for 'R' Sitting on the shoulders of the great #htslib API and the duckdb C API Package : rgenomicsetl.r-universe.dev/Rduckhts

  11. #RStats Rduckhts: 'DuckDB' 'HTS' File Reader Extension for 'R' Sitting on the shoulders of the great #htslib API and the duckdb C API Package : rgenomicsetl.r-universe.dev/Rduckhts

  12. #RStats Rduckhts: 'DuckDB' 'HTS' File Reader Extension for 'R' Sitting on the shoulders of the great #htslib API and the duckdb C API Package : rgenomicsetl.r-universe.dev/Rduckhts

  13. Maybe the fastest BCF/VCF to #RStats DataFrames using #htslib and #duckdb C API. Easily the title of fastest BCF/VCF to parquet convertors in #RStats (no other R options :D). This was motivated, among other things, by the idea of trying out #DuckLake in a familiar field github.com/RGenomicsETL...

  14. Maybe the fastest BCF/VCF to #RStats DataFrames using #htslib and #duckdb C API. Easily the title of fastest BCF/VCF to parquet convertors in #RStats (no other R options :D). This was motivated, among other things, by the idea of trying out #DuckLake in a familiar field github.com/RGenomicsETL...

  15. Maybe the fastest BCF/VCF to #RStats DataFrames using #htslib and #duckdb C API. Easily the title of fastest BCF/VCF to parquet convertors in #RStats (no other R options :D). This was motivated, among other things, by the idea of trying out #DuckLake in a familiar field github.com/RGenomicsETL...

  16. Maybe the fastest BCF/VCF to #RStats DataFrames using #htslib and #duckdb C API. Easily the title of fastest BCF/VCF to parquet convertors in #RStats (no other R options :D). This was motivated, among other things, by the idea of trying out #DuckLake in a familiar field github.com/RGenomicsETL...

  17. Maybe the fastest BCF/VCF to #RStats DataFrames using #htslib and #duckdb C API. Easily the title of fastest BCF/VCF to parquet convertors in #RStats (no other R options :D). This was motivated, among other things, by the idea of trying out #DuckLake in a familiar field github.com/RGenomicsETL...

  18. playing with GNU #guile and #htslib.

    (define with_vcf (lambda (f action) (begin
    (define header (bcf_hdr_read f))
    (define b (bcf_init1))
    (while (>= (bcf_read fp header b) 0) (action header b))
    (bcf_hdr_destroy header)
    (bcf_destroy b)
    (hts_close f)
    )))

    #bioinformatics #guile #scheme #vcf #lisp

  19. playing with GNU #guile and #htslib.

    (define with_vcf (lambda (f action) (begin
    (define header (bcf_hdr_read f))
    (define b (bcf_init1))
    (while (>= (bcf_read fp header b) 0) (action header b))
    (bcf_hdr_destroy header)
    (bcf_destroy b)
    (hts_close f)
    )))

    #bioinformatics #guile #scheme #vcf #lisp

  20. playing with GNU #guile and #htslib.

    (define with_vcf (lambda (f action) (begin
    (define header (bcf_hdr_read f))
    (define b (bcf_init1))
    (while (>= (bcf_read fp header b) 0) (action header b))
    (bcf_hdr_destroy header)
    (bcf_destroy b)
    (hts_close f)
    )))

    #bioinformatics #guile #scheme #vcf #lisp

  21. playing with GNU #guile and #htslib.

    (define with_vcf (lambda (f action) (begin
    (define header (bcf_hdr_read f))
    (define b (bcf_init1))
    (while (>= (bcf_read fp header b) 0) (action header b))
    (bcf_hdr_destroy header)
    (bcf_destroy b)
    (hts_close f)
    )))

    #bioinformatics #guile #scheme #vcf #lisp

  22. playing with GNU #guile and #htslib.

    (define with_vcf (lambda (f action) (begin
    (define header (bcf_hdr_read f))
    (define b (bcf_init1))
    (while (>= (bcf_read fp header b) 0) (action header b))
    (bcf_hdr_destroy header)
    (bcf_destroy b)
    (hts_close f)
    )))

    #bioinformatics #guile #scheme #vcf #lisp

  23. #htslib #Bioinformatics #GenomicsIO
    @yokofakun any idea what is the fastest method to get the nth bcf record using htslib or bcftools.h without explicit loops? (trying out something similar to your project github.com/lindenb/rbcf but with ALTREP)
    I guess it is possible to guess which block to (lazy) parse if one know the blocks offsets and number of records per block

  24. #htslib #Bioinformatics #GenomicsIO
    @yokofakun any idea what is the fastest method to get the nth bcf record using htslib or bcftools.h without explicit loops? (trying out something similar to your project github.com/lindenb/rbcf but with ALTREP)
    I guess it is possible to guess which block to (lazy) parse if one know the blocks offsets and number of records per block

  25. #htslib #Bioinformatics #GenomicsIO
    @yokofakun any idea what is the fastest method to get the nth bcf record using htslib or bcftools.h without explicit loops? (trying out something similar to your project github.com/lindenb/rbcf but with ALTREP)
    I guess it is possible to guess which block to (lazy) parse if one know the blocks offsets and number of records per block

  26. #htslib #Bioinformatics #GenomicsIO
    @yokofakun any idea what is the fastest method to get the nth bcf record using htslib or bcftools.h without explicit loops? (trying out something similar to your project github.com/lindenb/rbcf but with ALTREP)
    I guess it is possible to guess which block to (lazy) parse if one know the blocks offsets and number of records per block

  27. #htslib #Bioinformatics #GenomicsIO
    @yokofakun any idea what is the fastest method to get the nth bcf record using htslib or bcftools.h without explicit loops? (trying out something similar to your project github.com/lindenb/rbcf but with ALTREP)
    I guess it is possible to guess which block to (lazy) parse if one know the blocks offsets and number of records per block

  28. via Stephen Turner on X : "Everyone's giving NotebookLM their papers, theses, marketing materials, etc. to generate these "Podcasts".

    I gave it the full text of kseq.h from seqtk. "

    notebooklm.google.com/notebook

    #IA #podcast #htslib #bioinformatics

  29. via Stephen Turner on X : "Everyone's giving NotebookLM their papers, theses, marketing materials, etc. to generate these "Podcasts".

    I gave it the full text of kseq.h from seqtk. "

    notebooklm.google.com/notebook

    #IA #podcast #htslib #bioinformatics

  30. via Stephen Turner on X : "Everyone's giving NotebookLM their papers, theses, marketing materials, etc. to generate these "Podcasts".

    I gave it the full text of kseq.h from seqtk. "

    notebooklm.google.com/notebook

    #IA #podcast #htslib #bioinformatics

  31. via Stephen Turner on X : "Everyone's giving NotebookLM their papers, theses, marketing materials, etc. to generate these "Podcasts".

    I gave it the full text of kseq.h from seqtk. "

    notebooklm.google.com/notebook

    #IA #podcast #htslib #bioinformatics

  32. via Stephen Turner on X : "Everyone's giving NotebookLM their papers, theses, marketing materials, etc. to generate these "Podcasts".

    I gave it the full text of kseq.h from seqtk. "

    notebooklm.google.com/notebook

    #IA #podcast #htslib #bioinformatics