Trent Hauck

Results 30 comments of Trent Hauck

Thanks for fixing this! Any recommendations on the best way to get this into a repo (maybe a release)? (e.g. https://github.com/rust-bio/rust-bio/issues/374 is potentially caused by this)

Cool, thanks. It's probably not a big deal to go one of those ways if you can't do a release in the intermediate. The package uses the rust github action...

Hi, thank you for this tool... perhaps those glitches have returned? ``` ./datasets download genome taxon "Bacilli" --reference --exclude-gff3 --exclude-genomic-cds --exclude-protein --exclude-rna --dehydrated Collecting 1,936 genome accessions [================================================] 100% 1936/1936...

I'm not sure this is a duplicate, though related. As I read #326, it's for an alternative login mechanism (i.e github vs gitlab, which would be great), but this is...

Sure! I guess I got that far, and one step further. I.e. looking at https://github.com/wangfenjin/duckdb-rs/blob/948b87902dad442ea7fb96418a5c90f931881982/src/vtab/vector.rs#L85-L88C6 it isn't clear how best to call `set_null` without reiterating through the vector which doesn't...

I think you may need to register an object store... something like (untested): ```rust use object_store::local::LocalFileSystem; let local = LocalFileSystem::default(); let u = url::Url::parse("file://...")?; ctx.runtime_env() .register_object_store(&u, Arc::new(local)); ``` I.e. use...

I think you'll need a trailing slash `file:///Users/Desktop/rust/rustapi-master/resources/user/`. Based on this issue I opened up a PR to improve the parquet listing example. Checkout for relative and absolute path examples......

Hey, nice progress! And thanks for sharing the files. Let me follow up this weekend after I've had a chance to look at #103 and #105 in the context the...

@abearab, I was looking at this a bit, and wanted to see what you thought an ideal interface for you would be here? E.g. ```sql SELECT * FROM merge_paired_end_reads('path/to/read_1.fastq', 'path/to/read_2.fastq',...

This is helpful, thanks! It looks like bbmerge may have a nice paper describing their approach: https://www.ncbi.nlm.nih.gov/pmc/articles/PMC5657622/