-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from jonas-fuchs/dev
Reworked primer search and introduced primer dimer sensitive amplicon tiling
- Loading branch information
Showing
18 changed files
with
1,156 additions
and
1,007 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
## FAQ | ||
|
||
1. **How do I set settings for varVAMP?** | ||
|
||
Start with setting your optimal length of your amplicon, the max length that you can tolerate and the overlap that you want to achieve. If you want to allow ambiguous characters, set them to 2 as a start. Set the threshold to the mean sequence identity of your alignment. Run varvamp and then optimize the output. | ||
|
||
2. **How do I optimize the output?** | ||
|
||
It all depends on how many conserved regions varVAMP is able to find! There are two main parameters that influence this. The number of ambiguous bases allowed within a primer and the threshold for consensus nucleotides. Setting the threshold higher or the number of ambiguous bases lower will result in less conserved regions. If you have set the parameters below and get a decent output, increase the threshold until the output gets worse. This will increase the specificity of your primers. Likewise, if you do not have a good output, consider increasing the number of ambiguous bases before you lower the threshold. The console output varVAMP will also give you some suggestions. | ||
|
||
3. **varVAMP reported primer dimers. What now?** | ||
|
||
In your case varVAMP could not find suitable replacement primers. You can either rerun varVAMP and try different settings or you can perform a third pool that contains a amplicon that has one of the conflicting dimers. Notably, varVAMP also reports the dimer melting temperature. If it is still reasonable low, using a hot start polymerase might still lead to successful PCR amplification. | ||
|
||
|
||
4. **How fast is varVAMP?** | ||
|
||
varVAMP is pretty fast given the complexity of the problem. Running time is depended on the alignment length, number of sequences and the running mode. While the TILED is rather slow, qPCR and SANGER are faster. An alignment with a few hundred sequences and with a genome size of 10 kb will likely run in under a minute for the TILED mode. For large e.g. DNA viruses (200 kb) it takes considerably longer, but should still finish in minutes. Running time optimizations are planned. | ||
|
||
|
||
|
||
|
||
#### [Previous: How it works](./how_varvamp_works.md) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,37 @@ | ||
## Requirements | ||
varVAMP runs on UNIX Systems, MacOSX and Windows with Python3 >=3.9 installed. | ||
|
||
|
||
## Installation of varvamp with pip | ||
## Installation | ||
|
||
```shell | ||
git clone https://github.com/jonas-fuchs/varVAMP | ||
cd varVAMP | ||
pip install . | ||
pip install varvamp | ||
``` | ||
That was already it. To check if it worked: | ||
```shell | ||
varvamp -v | ||
``` | ||
You should see the current varVAMP version. | ||
|
||
## Installation via requirements.txt for development | ||
## Installation for advanced customization or development | ||
|
||
All varVAMP options (such as temperature, size, penalties) can be customized in the config.py. However, to do this you will have to install varvamp not from the PyPI repository, but directly from this github repository. | ||
|
||
### - via pip (recommended) | ||
|
||
```shell | ||
git clone https://github.com/jonas-fuchs/varVAMP | ||
cd varVAMP | ||
pip install -r requirements.txt | ||
python3 varvamp -v | ||
pip install . | ||
``` | ||
|
||
## Update | ||
### - via requirements.txt | ||
|
||
```shell | ||
git clone https://github.com/jonas-fuchs/varVAMP | ||
cd varVAMP | ||
git pull | ||
pip install . | ||
pip install -r requirements.txt | ||
python3 varvamp -v | ||
``` | ||
|
||
|
||
#### [Next: Preparing your data](./preparing_the_data.md) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
"""Tool to design amplicons for highly variable virusgenomes""" | ||
_program = "varvamp" | ||
__version__ = "0.2" | ||
__version__ = "0.3" |
Oops, something went wrong.