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
Hi Regarding this test code
TEST_F(RaconPolishingTest, FragmentCorrectionWithQualitiesFullMhapCUDA) { SetUp(racon_test_data_path + "sample_reads.fastq.gz", racon_test_data_path + "sample_ava_overlaps.mhap.gz", racon_test_data_path + "sample_reads.fastq.gz", racon::PolisherType::kF, 500, 10, 0.3, 1, -1, -1, 1); initialize(); std::vector<std::unique_ptr<racon::Sequence>> polished_sequences; polish(polished_sequences, false); EXPECT_EQ(polished_sequences.size(), 236); uint32_t total_length = 0; for (const auto& it: polished_sequences) { total_length += it->data().size(); } EXPECT_EQ(total_length, 1655505); // CPU 1658216 }
I want to know if 1655505 is the length of sequence (AA... codes and not %%*+...) is the fastaq read file or not?
The text was updated successfully, but these errors were encountered:
Apologies for the late response. 1655505 is the length of the output sequence (string of A, T, C, G characters)
1655505
Sorry, something went wrong.
No branches or pull requests
Hi
Regarding this test code
I want to know if 1655505 is the length of sequence (AA... codes and not %%*+...) is the fastaq read file or not?
The text was updated successfully, but these errors were encountered: