# README
## In-Silico PCR tool
[![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.7882322.svg)](https://doi.org/10.5281/zenodo.7882322)
This script takes a text file with primer sequence (one per line,optinal name in column 2, tab-seperated) and a reference FASTA file as input and identifies primer pairs which amplify a DNA sequence of length less than or equal to a user-specified maximum, at a given Tm and salt concentration. The script outputs the sequences of the primers, the portion of the primer that binds, the number of mismatches, as well as the start and end coordinates of the amplified sequence. It also outputs the Tm of the amplicons and the Tm of amplicon pairs.
### Dependencies
- Python 3
- [Biopython](https://biopython.org/)
- [pandas](https://pandas.pydata.org/)
- [BLAST+](https://www.ncbi.nlm.nih.gov/books/NBK569861/)
These may be installed by running
```
pip install PCRinSilico
```
### Usage
```
PCRinSilico [options]
--primer_seq [path to primer sequence file, one primer per line]
--ref_fasta_file [path to reference FASTA file]
```
### Options
| Argument | Description | Default |
|-----------------------|--------------------------------------------------------------|--------------|
| `--annealing_temp` | Annealing temperature (in Celsius). | 60.0 |
| `--salt_concentration` | Salt concentration (in nM, Ignored if Q5 True). | 50 |
| `--max_amplicon_len` | Maximum length of PCR products in nucleotides. | 2000 |
| `--req_five` | Require the 5' end of the primer to bind? | True |
| `--out_file` | Output file name. | "in_silico_PCR" |
| `--Q5` | Use Q5 approximation settings for Tm calculations? | "True" |
### Example
```
PCRinSilico \
--primer_seq ./example/primers.txt \
--ref_fasta_file ./example/ref.fasta
```
#### in_silico_PCR.tsv
| qseq1 | qseq2_input | qstart1 | qend1 | direction1 | mismatch2 | qseq2 | qseq1_input | qstart2 | qend2 | direction2 | mismatch1 | binding_pos_diff | reference | ref_region |
|---------|----------------------|---------|-------|------------|-----------|-------|---------------|---------|-------|------------|-----------|------------------|-----------|------------|
| kkd_F_2 | gaacaccggcagtggttc | 1 | 18 | + | 0 | sge_R | ctgccgcagcggt | 1 | 13 | - | 0 | 300 | example | 772, 1072 |
| kkd_R | accgagctgccggacggcac | 1 | 20 | + | 0 | sge_R | ctgccgcagcggt | 1 | 13 | - | 0 | 318 | example | 772, 1090 |
#### in_silico_PCR_amplicon_interactions.tsv
| amplicon1_PF | amplicon1_PR | amplicon2_PF | amplicon2_PR | tm |
|--------------|--------------|--------------|--------------|-------------|
| kkd_F_2 | sge_R | kkd_R | sge_R | 90.22726832 |
#### in_silico_PCR_primer_dimears.tsv
| Sequence1 | Sequence2 | MeltingTemp |
|-----------|-----------|-------------------|
| sge_F | sge_R | 75 |
| sge_F | kkd_F | 72 |
| sge_F | kkd_F_2 | 73 |
| sge_F | kkd_R | 79 |
| sge_R | kkd_F | 74 |
| sge_R | kkd_F_2 | 74 |
| sge_R | kkd_R | 80 |
| kkd_F | kkd_F_2 | 72 |
| kkd_F | kkd_R | 78 |
| kkd_F_2 | kkd_R | 78 |
Raw data
{
"_id": null,
"home_page": "https://github.com/SemiQuant/inSilicoPCR",
"name": "PCRinSilico",
"maintainer": "",
"docs_url": null,
"requires_python": "",
"maintainer_email": "",
"keywords": "PCR,in silico PCR",
"author": "Jason D Limberis",
"author_email": "Jason.Limberis@ucsf.edu",
"download_url": "https://files.pythonhosted.org/packages/4c/8a/dfcf1b0f4afb23d64db00f8c5277eda4c804aecbcd317bf2c6597acf7d17/PCRinSilico-1.1.3.tar.gz",
"platform": null,
"description": "# README\n\n## In-Silico PCR tool\n\n[![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.7882322.svg)](https://doi.org/10.5281/zenodo.7882322)\n\nThis script takes a text file with primer sequence (one per line,optinal name in column 2, tab-seperated) and a reference FASTA file as input and identifies primer pairs which amplify a DNA sequence of length less than or equal to a user-specified maximum, at a given Tm and salt concentration. The script outputs the sequences of the primers, the portion of the primer that binds, the number of mismatches, as well as the start and end coordinates of the amplified sequence. It also outputs the Tm of the amplicons and the Tm of amplicon pairs.\n\n### Dependencies\n\n- Python 3\n- [Biopython](https://biopython.org/)\n- [pandas](https://pandas.pydata.org/)\n- [BLAST+](https://www.ncbi.nlm.nih.gov/books/NBK569861/)\n\nThese may be installed by running\n\n```\npip install PCRinSilico\n```\n\n### Usage\n\n```\nPCRinSilico [options]\n --primer_seq [path to primer sequence file, one primer per line]\n --ref_fasta_file [path to reference FASTA file]\n```\n\n### Options\n\n| Argument | Description | Default |\n|-----------------------|--------------------------------------------------------------|--------------|\n| `--annealing_temp` | Annealing temperature (in Celsius). | 60.0 |\n| `--salt_concentration` | Salt concentration (in nM, Ignored if Q5 True). | 50 |\n| `--max_amplicon_len` | Maximum length of PCR products in nucleotides. | 2000 |\n| `--req_five` | Require the 5' end of the primer to bind? | True |\n| `--out_file` | Output file name. | \"in_silico_PCR\" |\n| `--Q5` | Use Q5 approximation settings for Tm calculations? | \"True\" |\n\n\n### Example\n\n```\nPCRinSilico \\\n --primer_seq ./example/primers.txt \\\n --ref_fasta_file ./example/ref.fasta\n```\n\n#### in_silico_PCR.tsv\n| qseq1 | qseq2_input | qstart1 | qend1 | direction1 | mismatch2 | qseq2 | qseq1_input | qstart2 | qend2 | direction2 | mismatch1 | binding_pos_diff | reference | ref_region |\n|---------|----------------------|---------|-------|------------|-----------|-------|---------------|---------|-------|------------|-----------|------------------|-----------|------------|\n| kkd_F_2 | gaacaccggcagtggttc | 1 | 18 | + | 0 | sge_R | ctgccgcagcggt | 1 | 13 | - | 0 | 300 | example | 772, 1072 |\n| kkd_R | accgagctgccggacggcac | 1 | 20 | + | 0 | sge_R | ctgccgcagcggt | 1 | 13 | - | 0 | 318 | example | 772, 1090 |\n\n\n#### in_silico_PCR_amplicon_interactions.tsv\n| amplicon1_PF | amplicon1_PR | amplicon2_PF | amplicon2_PR | tm |\n|--------------|--------------|--------------|--------------|-------------|\n| kkd_F_2 | sge_R | kkd_R | sge_R | 90.22726832 |\n\n\n#### in_silico_PCR_primer_dimears.tsv\n| Sequence1 | Sequence2 | MeltingTemp |\n|-----------|-----------|-------------------|\n| sge_F | sge_R | 75 |\n| sge_F | kkd_F | 72 |\n| sge_F | kkd_F_2 | 73 |\n| sge_F | kkd_R | 79 |\n| sge_R | kkd_F | 74 |\n| sge_R | kkd_F_2 | 74 |\n| sge_R | kkd_R | 80 |\n| kkd_F | kkd_F_2 | 72 |\n| kkd_F | kkd_R | 78 |\n| kkd_F_2 | kkd_R | 78 |\n\n\n",
"bugtrack_url": null,
"license": "MIT",
"summary": "In silico PCR tool",
"version": "1.1.3",
"project_urls": {
"Homepage": "https://github.com/SemiQuant/inSilicoPCR"
},
"split_keywords": [
"pcr",
"in silico pcr"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "eff704395bc7102bc26a188bbf6daaebc291a66b066323d96ace8a9f3c592503",
"md5": "41909b06e174c94cda90cee58267c5ca",
"sha256": "8ff0b375f5d02e555ef981b8a08d91226d30aff21e0ac1e1bcb910874c11f113"
},
"downloads": -1,
"filename": "PCRinSilico-1.1.3-py3-none-any.whl",
"has_sig": false,
"md5_digest": "41909b06e174c94cda90cee58267c5ca",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 6376,
"upload_time": "2023-05-07T10:40:20",
"upload_time_iso_8601": "2023-05-07T10:40:20.243699Z",
"url": "https://files.pythonhosted.org/packages/ef/f7/04395bc7102bc26a188bbf6daaebc291a66b066323d96ace8a9f3c592503/PCRinSilico-1.1.3-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4c8adfcf1b0f4afb23d64db00f8c5277eda4c804aecbcd317bf2c6597acf7d17",
"md5": "f0d46eac86aaf3d99b65e0d475a464c8",
"sha256": "7494cd3a9bdc1515cfc83c6e85be578a670d39ba35c7bd786118607f8e103b78"
},
"downloads": -1,
"filename": "PCRinSilico-1.1.3.tar.gz",
"has_sig": false,
"md5_digest": "f0d46eac86aaf3d99b65e0d475a464c8",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 6188,
"upload_time": "2023-05-07T10:40:22",
"upload_time_iso_8601": "2023-05-07T10:40:22.622542Z",
"url": "https://files.pythonhosted.org/packages/4c/8a/dfcf1b0f4afb23d64db00f8c5277eda4c804aecbcd317bf2c6597acf7d17/PCRinSilico-1.1.3.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2023-05-07 10:40:22",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "SemiQuant",
"github_project": "inSilicoPCR",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "pcrinsilico"
}