Skip to content
New issue

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

Question about test code #4

Open
mahmoodn opened this issue Aug 11, 2019 · 1 comment
Open

Question about test code #4

mahmoodn opened this issue Aug 11, 2019 · 1 comment

Comments

@mahmoodn
Copy link

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?

@tijyojwad tijyojwad transferred this issue from another repository Aug 15, 2019
@tijyojwad
Copy link

Apologies for the late response. 1655505 is the length of the output sequence (string of A, T, C, G characters)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants