We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently, I cannot compile the async Writer due to error[E0308]: mismatched types --> noodles-util/src/alignment/async/io/writer.rs:80:63 | 80 | Self::Cram(writer) => writer.write_record(header, record).await, | ------------ ^^^^^^ expected `Record`, found `&dyn Record` | | | arguments to this method are incorrect | = note: expected struct `noodles_cram::Record` found reference `&dyn noodles_sam::alignment::Record` note: method defined here --> /Users/michael/Projects/noodles/noodles-cram/src/async/io/writer.rs:181:18 | 181 | pub async fn write_record( | ^^^^^^^^^^^^ Which is coming from the fact that cram::async::io::Writer::write_record takes a cram::Record type rather than a &dyn > sam::alignment::Record trait. noodles/noodles-cram/src/async/io/writer.rs Line 184 in 174ad3c mut record: Record,
Currently, I cannot compile the async Writer due to
error[E0308]: mismatched types --> noodles-util/src/alignment/async/io/writer.rs:80:63 | 80 | Self::Cram(writer) => writer.write_record(header, record).await, | ------------ ^^^^^^ expected `Record`, found `&dyn Record` | | | arguments to this method are incorrect | = note: expected struct `noodles_cram::Record` found reference `&dyn noodles_sam::alignment::Record` note: method defined here --> /Users/michael/Projects/noodles/noodles-cram/src/async/io/writer.rs:181:18 | 181 | pub async fn write_record( | ^^^^^^^^^^^^
Which is coming from the fact that cram::async::io::Writer::write_record takes a cram::Record type rather than a &dyn > sam::alignment::Record trait.
cram::async::io::Writer::write_record
cram::Record
&dyn > sam::alignment::Record
noodles/noodles-cram/src/async/io/writer.rs
Line 184 in 174ad3c
Originally posted by @mbhall88 in #292 (comment)
The async CRAM writer is missing the equivalent of cram::io::Writer::write_alignment_record.
cram::io::Writer::write_alignment_record
The text was updated successfully, but these errors were encountered:
f8b5d4a
zaeleus
No branches or pull requests
Originally posted by @mbhall88 in #292 (comment)
The async CRAM writer is missing the equivalent of
cram::io::Writer::write_alignment_record
.The text was updated successfully, but these errors were encountered: