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

base calling #71

Open
ramiroricardo opened this issue Jun 25, 2021 · 1 comment
Open

base calling #71

ramiroricardo opened this issue Jun 25, 2021 · 1 comment
Assignees

Comments

@ramiroricardo
Copy link

Hi @roblanf ,

Thank you for developing sangeranalyseR, we have been testing it for some applications and it is quite interesting.

One doubt we have is what method is being used for the base calling? and could it just take the base calling directly from the raw ab1 file?

best,

Ramiro

@Kuanhao-Chao
Copy link
Collaborator

Hi @ramiroricardo,

We use the base calling method in sangerseqR. So basically what it does is to get the maximum peak value for each channel in each peak window.

If you want to use sangeranalyseR to check the base calling result, you can create a SangerRead object and it stores all raw information that's needed for base calling. And if you want to visualize the base calling result, you can simply run the chromatogram() function.

Following are codes that you can try:

inputFilesPath <- system.file("extdata/", package = "sangeranalyseR")
A_chloroticaFFN <- file.path(inputFilesPath,
                             "Allolobophora_chlorotica",
                             "ACHLO",
                             "Achl_ACHLO006-09_1_F.ab1")

 sangerReadF <- new("SangerRead",
                     readFeature  = "Forward Read",
                     readFileName = A_chloroticaFFN)

# chromatogram plot
chromatogram(sangerReadF)

You can also run SangerContig or SangerAlignment functions to do the Sanger seq data analysis and get the base calling result from shiny apps.

For more information, please check the development version of sangeranalyseR documentation.

Please let me know if you have any questions.

beast,

Howard

@Kuanhao-Chao Kuanhao-Chao self-assigned this Jul 1, 2021
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