gene-synthesis


Namegene-synthesis JSON
Version 0.1 PyPI version JSON
download
home_pagehttps://github.com/shiqiang-lin/gene-synthesis
Summarygene synthesis design
upload_time2024-05-28 00:39:29
maintainerNone
docs_urlNone
authorShiqiang Lin
requires_pythonNone
licenseMIT
keywords gene synthesis gene cloning pcr
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            ### Gene synthesis design: A Pythonic approach
The script is used to produce the needed DNA fragments for merging into the full-length gene with PCR. All of the resultant DNA fragments have similar melting temperatures in the overlap regions, which is important for the successful assembly of target gene via PCR.

### 1. Installation
#### <font color=red> in macOS and in Windows </font>
(1) make sure you have installed Python 3.10.

(2) install the dependent packages with the following commands.
```zsh 
python3.10 -m pip install "biopython==1.79"
python3.10 -m pip install "matplotlib==3.6.3"
```

(3) install the program with the following command.
```zsh
python3.10 -m pip install gene_synthesis
```

### 2. Usage
#### 2.1 Run the script in terminal to get the needed DNA fragments for the synthesis of target gene with PCR
#### <font color=red> 2.1.1 macOS  </font>
During installation, the script gene_synthesis is copied to the PATH.
```zsh
 % which gene_synthesis
/Library/Frameworks/Python.framework/Versions/3.10/bin/gene_synthesis
```
The following steps show how to run the script.

(1) open terminal and cd to the Desktop with the following commands.
```zsh
% cd
% cd Desktop
```
(2) make a directory, for example, ‘gene_fragments’.
```zsh
% mkdir gene_fragments
```
(3) copy the target gene sequence file, for example, ‘beta_optimized.fasta’ (a test gene sequence that can be downloaded from the S3 directory of https://github.com/shiqiang-lin/gene-synthesis), which should be with fasta format, to the directory made in step (2). This step can be done with mouse drag and drop, or with terminal command cp. Please note that it is necessary to perform codon optimization to the target gene before running our script, which make it easier to get fragments with overlaps that have closer melting temperatures.

(4) cd to the directory made in step (2), with the following command.
```zsh
% cd gene_fragments
```
(5) run the following command. A figure showing the melting temperature of each DNA fragment will show up, and the DNA fragments are stored in a folder in the directory ‘gene_fragments’. 
```zsh
% gene_synthesis beta_optimized.fasta
```
#### <font color=red> 2.1.2 Windows  </font>
During installation, the script is copied to the PATH C:\python3.10.4\Scripts. You may cd to the directory to see if it is there. If not, you can search in 'My Computer' to find the directory where the script 'gene_synthesis' is.

The following steps show how to run the script.

(1) open terminal and cd to the Desktop with the following commands.
```zsh
> cd Desktop
```
(2) make a directory, for example, ‘gene_fragments’.
```zsh
> mkdir gene_fragments
```
(3) copy the target gene sequence file, for example, ‘beta_optimized.fasta’ (a test gene sequence that can be downloaded from the S3 directory of https://github.com/shiqiang-lin/gene-synthesis), which should be with fasta format, to the directory made in step (2). This step can be done with mouse drag and drop, or with terminal command copy. Please note that it is necessary to perform codon optimization to the target gene before running our script, which make it easier to get fragments with overlaps that have closer melting temperatures.

(4) cd to the directory made in step (2), with the following command.
```zsh
> cd gene_fragments
```
(5) run the following command. A figure showing the melting temperature of each DNA fragment will show up, and the DNA fragments are stored in a folder in the directory ‘gene_fragments’.
```zsh
> python3.10 C:\python3.10.4\Scripts\gene_synthesis beta_optimized.fasta
```
Please note that the 'C:\python3.10.4\Scripts\' is the directory in which the script gene_synthesis resides. If you install the Python 3.10. 4 elsewhere, you may need to change the above directory in the command accordingly.
#### 2.2 Use the function of the script
The function ‘get_overlap_by_Tm’ is used to get the optimal overlap sequence for the input DNA sequence. The input DNA sequence should be a string larger than 50. You also need to set a Tm value for searching the best overlap sequence from the 3’ of the DNA sequence.

An example is shown as follows.
```zsh
% python3.10
Python 3.10.4 (v3.10.4:9d38120e33, Mar 23 2022, 17:29:05) [Clang 13.0.0 (clang-1300.0.29.30)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> from gene_synthesis.lib import get_overlap_by_Tm
>>> gene_fragment = 'ATGCCCTTGGACAGTGTCAAAATGGACCACACGGTTAATCGGCGGAAGGCC'
>>> len(gene_fragment)
51
>>> Tm_set = 55
>>> get_overlap_by_Tm(gene_fragment,Tm_set)
('GGTTAATCGGCGGAAGGCC', 55.47568390601265, 0.4756839060126481)
```
The output is a tuple containing the overlap sequence, the melting temperature of the overlap sequence, and the distance between the melting temperature of the overlap sequence and Tm_set. The distance of the output overlap sequence is the smallest among all possible overlap sequences, according to which we define the optimal overlap sequence.

The minimal and maximal lengths of possible overlap sequences are set as min_overlap_len = 10 and max_overlap_len = 25, which should satisfy most cases of PCR merging of overlap DNA sequences. If you need to change the range, you may need to use the source code directly from the script in the S1 directory of https://github.com/shiqiang-lin/gene-synthesis.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/shiqiang-lin/gene-synthesis",
    "name": "gene-synthesis",
    "maintainer": null,
    "docs_url": null,
    "requires_python": null,
    "maintainer_email": null,
    "keywords": "gene synthesis, gene cloning, PCR",
    "author": "Shiqiang Lin",
    "author_email": "linshiqiang@fafu.edu.cn",
    "download_url": "https://files.pythonhosted.org/packages/dc/17/9fa735f1e3eba7e2b780b36a8b60b02e41c9f10494aae4b1fc8ac2ae03bf/gene_synthesis-0.1.tar.gz",
    "platform": null,
    "description": "### Gene synthesis design: A Pythonic approach\nThe script is used to produce the needed DNA fragments for merging into the full-length gene with PCR. All of the resultant DNA fragments have similar melting temperatures in the overlap regions, which is important for the successful assembly of target gene via PCR.\n\n### 1. Installation\n#### <font color=red> in macOS and in Windows </font>\n(1) make sure you have installed Python 3.10.\n\n(2) install the dependent packages with the following commands.\n```zsh \npython3.10 -m pip install \"biopython==1.79\"\npython3.10 -m pip install \"matplotlib==3.6.3\"\n```\n\n(3) install the program with the following command.\n```zsh\npython3.10 -m pip install gene_synthesis\n```\n\n### 2. Usage\n#### 2.1 Run the script in terminal to get the needed DNA fragments for the synthesis of target gene with PCR\n#### <font color=red> 2.1.1 macOS  </font>\nDuring installation, the script gene_synthesis is copied to the PATH.\n```zsh\n % which gene_synthesis\n/Library/Frameworks/Python.framework/Versions/3.10/bin/gene_synthesis\n```\nThe following steps show how to run the script.\n\n(1) open terminal and cd to the Desktop with the following commands.\n```zsh\n% cd\n% cd Desktop\n```\n(2) make a directory, for example, \u2018gene_fragments\u2019.\n```zsh\n% mkdir gene_fragments\n```\n(3) copy the target gene sequence file, for example, \u2018beta_optimized.fasta\u2019 (a test gene sequence that can be downloaded from the S3 directory of https://github.com/shiqiang-lin/gene-synthesis), which should be with fasta format, to the directory made in step (2). This step can be done with mouse drag and drop, or with terminal command cp. Please note that it is necessary to perform codon optimization to the target gene before running our script, which make it easier to get fragments with overlaps that have closer melting temperatures.\n\n(4) cd to the directory made in step (2), with the following command.\n```zsh\n% cd gene_fragments\n```\n(5) run the following command. A figure showing the melting temperature of each DNA fragment will show up, and the DNA fragments are stored in a folder in the directory \u2018gene_fragments\u2019. \n```zsh\n% gene_synthesis beta_optimized.fasta\n```\n#### <font color=red> 2.1.2 Windows  </font>\nDuring installation, the script is copied to the PATH C:\\python3.10.4\\Scripts. You may cd to the directory to see if it is there. If not, you can search in 'My Computer' to find the directory where the script 'gene_synthesis' is.\n\nThe following steps show how to run the script.\n\n(1) open terminal and cd to the Desktop with the following commands.\n```zsh\n> cd Desktop\n```\n(2) make a directory, for example, \u2018gene_fragments\u2019.\n```zsh\n> mkdir gene_fragments\n```\n(3) copy the target gene sequence file, for example, \u2018beta_optimized.fasta\u2019 (a test gene sequence that can be downloaded from the S3 directory of https://github.com/shiqiang-lin/gene-synthesis), which should be with fasta format, to the directory made in step (2). This step can be done with mouse drag and drop, or with terminal command copy. Please note that it is necessary to perform codon optimization to the target gene before running our script, which make it easier to get fragments with overlaps that have closer melting temperatures.\n\n(4) cd to the directory made in step (2), with the following command.\n```zsh\n> cd gene_fragments\n```\n(5) run the following command. A figure showing the melting temperature of each DNA fragment will show up, and the DNA fragments are stored in a folder in the directory \u2018gene_fragments\u2019.\n```zsh\n> python3.10 C:\\python3.10.4\\Scripts\\gene_synthesis beta_optimized.fasta\n```\nPlease note that the 'C:\\python3.10.4\\Scripts\\' is the directory in which the script gene_synthesis resides. If you install the Python 3.10. 4 elsewhere, you may need to change the above directory in the command accordingly.\n#### 2.2 Use the function of the script\nThe function \u2018get_overlap_by_Tm\u2019 is used to get the optimal overlap sequence for the input DNA sequence. The input DNA sequence should be a string larger than 50. You also need to set a Tm value for searching the best overlap sequence from the 3\u2019 of the DNA sequence.\n\nAn example is shown as follows.\n```zsh\n% python3.10\nPython 3.10.4 (v3.10.4:9d38120e33, Mar 23 2022, 17:29:05) [Clang 13.0.0 (clang-1300.0.29.30)] on darwin\nType \"help\", \"copyright\", \"credits\" or \"license\" for more information.\n>>> from gene_synthesis.lib import get_overlap_by_Tm\n>>> gene_fragment = 'ATGCCCTTGGACAGTGTCAAAATGGACCACACGGTTAATCGGCGGAAGGCC'\n>>> len(gene_fragment)\n51\n>>> Tm_set = 55\n>>> get_overlap_by_Tm(gene_fragment,Tm_set)\n('GGTTAATCGGCGGAAGGCC', 55.47568390601265, 0.4756839060126481)\n```\nThe output is a tuple containing the overlap sequence, the melting temperature of the overlap sequence, and the distance between the melting temperature of the overlap sequence and Tm_set. The distance of the output overlap sequence is the smallest among all possible overlap sequences, according to which we define the optimal overlap sequence.\n\nThe minimal and maximal lengths of possible overlap sequences are set as min_overlap_len = 10 and max_overlap_len = 25, which should satisfy most cases of PCR merging of overlap DNA sequences. If you need to change the range, you may need to use the source code directly from the script in the S1 directory of https://github.com/shiqiang-lin/gene-synthesis.\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "gene synthesis design",
    "version": "0.1",
    "project_urls": {
        "Homepage": "https://github.com/shiqiang-lin/gene-synthesis"
    },
    "split_keywords": [
        "gene synthesis",
        " gene cloning",
        " pcr"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c8517f636d5042b30d6ea89068a53300e3ae045f4223e081dfb4174869208205",
                "md5": "aa515839c0292a60f8a0f80f62e14c8a",
                "sha256": "6775da201263158e141f256728236c52c764703dee6b55366a9a0d4b11f444aa"
            },
            "downloads": -1,
            "filename": "gene_synthesis-0.1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "aa515839c0292a60f8a0f80f62e14c8a",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 12476,
            "upload_time": "2024-05-28T00:39:27",
            "upload_time_iso_8601": "2024-05-28T00:39:27.820138Z",
            "url": "https://files.pythonhosted.org/packages/c8/51/7f636d5042b30d6ea89068a53300e3ae045f4223e081dfb4174869208205/gene_synthesis-0.1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dc179fa735f1e3eba7e2b780b36a8b60b02e41c9f10494aae4b1fc8ac2ae03bf",
                "md5": "645bf2c449cc20b33956931577ff72b0",
                "sha256": "ed52d3523eca000197ba74453fe65a50b1c875a66a8c03c9e3c7c644cf9d574c"
            },
            "downloads": -1,
            "filename": "gene_synthesis-0.1.tar.gz",
            "has_sig": false,
            "md5_digest": "645bf2c449cc20b33956931577ff72b0",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 10158,
            "upload_time": "2024-05-28T00:39:29",
            "upload_time_iso_8601": "2024-05-28T00:39:29.757865Z",
            "url": "https://files.pythonhosted.org/packages/dc/17/9fa735f1e3eba7e2b780b36a8b60b02e41c9f10494aae4b1fc8ac2ae03bf/gene_synthesis-0.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-05-28 00:39:29",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "shiqiang-lin",
    "github_project": "gene-synthesis",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "gene-synthesis"
}
        
Elapsed time: 0.28832s