# GeneMaster Package [DEMO]
## Description
The GeneMaster project is a comprehensive bioinformatics package designed to facilitate the analysis and manipulation of
genetic sequences, including DNA and RNA. It provides a robust set of data types and operations tailored to genomic
research, allowing users to perform tasks such as reverse complement generation, GC content calculation, RNA
transcription, and protein translation. Additionally, it includes advanced algorithms for solving problems like the
shortest superstring, longest common subsequence, and motif finding. The package also supports parsing FASTA format
files and includes thorough testing modules to ensure accuracy and reliability in genetic sequence analysis.
## Install
To get started with GeneMaster, follow these steps to install the package and its dependencies.
### Using pip
The easiest way to install GeneMaster is through pip. Open your terminal or command prompt and
```commandline
pip install GeneMaster
```
## Features
### DNA Sequence
- Manage DNA Sequences with Ease: Effortlessly handle and manipulate DNA sequences with straightforward methods.
```python
from GeneMaster import DNA
dna_seq = DNA('AGCCT')
dna_seq2 = DNA('CGATGA')
print(dna_seq.sequence)
print(dna_seq.complement)
print(dna_seq.length)
print(dna_seq+dna_seq2)
```
```
Output:
AGCCT
AGGCT
5
AGCCTCGATGA
```
- Visualize DNA Sequences: Generate a visual representation of the DNA sequence to aid in understanding.
```python
from GeneMaster import DNA
dna = DNA('AGCCT')
print(dna.visualize)
```
```
Output:
5' A-G-C-C-T 3'
│ │ │ │ │ 5
3' T-C-G-G-A 5'
```
### RNA Sequence
- Examine RNA Properties: Similar to DNA, view various properties of RNA sequences.
```python
from GeneMaster import RNA
rna = RNA('AGUUACU')
print(rna.sequence)
print(rna.length)
```
```
Output:
AGUUACU
7
```
- Visualize RNA Sequences: Create a visual representation of the RNA sequence for better analysis.
```python
from GeneMaster import RNA
rna = RNA('AGUUACU')
print(rna.visualize)
```
```
Output:
5' A-G-U-U-A-C-U 3'
| | | | | | | 7
```
### DNA & RNA Algorithms
- `revComplement()` Returns the reverse complement of the DNA sequence.
- `gc_content()` Provides the GC content ratio of the DNA strand.
- `transcribe_to_rna()` Returns the RNA sequence resulting from transcription.
- `transcribe_to_dna()` Returns the DNA sequence resulting from transcription.
- `start_stop_codons()` Identifies the start and stop codons in mRNA, determining where the translation process begins and ends.
- `find_orf()` Identifies open reading frames (ORFs) within a DNA sequence, which are potential regions for protein-coding genes.
- `extract_exons()` Extracts exon regions from a given DNA or RNA sequence.
- `extract_introns()` Extracts intron regions from a DNA or RNA sequence.
- `find_motif(motif)` Searches for occurrences of a specified motif within a DNA or RNA sequence.
- `melting_temperature()` Calculates the melting temperature for DNA sequence.
- `pairwise_align(seq)` Aligns main DNA sequence to another sequence
- `codon_bias()` Analyzes codon usage to determine codon bias within a DNA or RNA sequence.
- `translation()` Translates DNA ot RNA sequence into Protein sequence.
- `kmer()` Analyzes the frequent k-mers within a DNA or RNA sequence.
### Special Algorithms
- `find_shared_motif(sequences)` Returns a shared motif sequence for a list of DNA or RNA sequences.
- `longest_common_subsequence(sequences)` Superfast algorithm returns the longest common subsequence for a list of DNA or RNA sequences.
- `hamming_distance(seq1,seq2)` Computes the difference between two DNA or RNA sequences.
- `shortest_superstring(sequecnes)` Returns the shortest sequence that includes all sequences.
### Credits
The development of GeneMaster would not have been possible without the contributions and support of the following individuals and resources:
Ahmed Osama: Creator and primary developer of the GeneMaster package.
For further information about these contributions and resources, please visit their respective websites and repositories.
Repository : [GeneMaster](https://github.com/AhmedOs13/GeneMaster)
PyPi: [GeneMaster](https://pypi.org/project/GeneMaster/)
Raw data
{
"_id": null,
"home_page": "https://github.com/AhmedOs13/GeneMaster",
"name": "GeneMaster",
"maintainer": null,
"docs_url": null,
"requires_python": null,
"maintainer_email": null,
"keywords": null,
"author": "Ahmed Osama Taha",
"author_email": "ahmedosamaofficial13@gmail.com",
"download_url": "https://files.pythonhosted.org/packages/ef/ad/ebca948f7c8b8ff304d47521c0f68c156f54e624a9a887ff74752588f99e/genemaster-1.0.1.tar.gz",
"platform": null,
"description": "# GeneMaster Package [DEMO]\r\n\r\n## Description\r\n\r\nThe GeneMaster project is a comprehensive bioinformatics package designed to facilitate the analysis and manipulation of\r\ngenetic sequences, including DNA and RNA. It provides a robust set of data types and operations tailored to genomic\r\nresearch, allowing users to perform tasks such as reverse complement generation, GC content calculation, RNA\r\ntranscription, and protein translation. Additionally, it includes advanced algorithms for solving problems like the\r\nshortest superstring, longest common subsequence, and motif finding. The package also supports parsing FASTA format\r\nfiles and includes thorough testing modules to ensure accuracy and reliability in genetic sequence analysis.\r\n\r\n## Install\r\n\r\nTo get started with GeneMaster, follow these steps to install the package and its dependencies.\r\n\r\n### Using pip\r\n\r\nThe easiest way to install GeneMaster is through pip. Open your terminal or command prompt and\r\n\r\n```commandline\r\npip install GeneMaster\r\n```\r\n\r\n## Features\r\n\r\n### DNA Sequence\r\n\r\n- Manage DNA Sequences with Ease: Effortlessly handle and manipulate DNA sequences with straightforward methods.\r\n\r\n```python\r\nfrom GeneMaster import DNA\r\n\r\ndna_seq = DNA('AGCCT')\r\ndna_seq2 = DNA('CGATGA')\r\n\r\nprint(dna_seq.sequence)\r\nprint(dna_seq.complement)\r\nprint(dna_seq.length)\r\nprint(dna_seq+dna_seq2)\r\n```\r\n\r\n```\r\nOutput:\r\n\r\nAGCCT\r\nAGGCT\r\n5\r\nAGCCTCGATGA\r\n```\r\n\r\n- Visualize DNA Sequences: Generate a visual representation of the DNA sequence to aid in understanding.\r\n\r\n```python\r\nfrom GeneMaster import DNA\r\n\r\ndna = DNA('AGCCT')\r\nprint(dna.visualize)\r\n```\r\n\r\n```\r\nOutput:\r\n\r\n5' A-G-C-C-T 3'\r\n \u00e2\u201d\u201a \u00e2\u201d\u201a \u00e2\u201d\u201a \u00e2\u201d\u201a \u00e2\u201d\u201a 5\r\n3' T-C-G-G-A 5'\r\n```\r\n\r\n### RNA Sequence\r\n\r\n- Examine RNA Properties: Similar to DNA, view various properties of RNA sequences.\r\n\r\n```python\r\nfrom GeneMaster import RNA\r\n\r\nrna = RNA('AGUUACU')\r\nprint(rna.sequence)\r\nprint(rna.length)\r\n```\r\n\r\n```\r\nOutput:\r\n\r\nAGUUACU\r\n7\r\n```\r\n\r\n- Visualize RNA Sequences: Create a visual representation of the RNA sequence for better analysis.\r\n\r\n```python\r\nfrom GeneMaster import RNA\r\n\r\nrna = RNA('AGUUACU')\r\nprint(rna.visualize)\r\n```\r\n\r\n```\r\nOutput:\r\n\r\n5' A-G-U-U-A-C-U 3'\r\n | | | | | | | 7\r\n```\r\n\r\n### DNA & RNA Algorithms\r\n\r\n- `revComplement()` Returns the reverse complement of the DNA sequence. \r\n- `gc_content()` Provides the GC content ratio of the DNA strand.\r\n- `transcribe_to_rna()` Returns the RNA sequence resulting from transcription.\r\n- `transcribe_to_dna()` Returns the DNA sequence resulting from transcription.\r\n- `start_stop_codons()` Identifies the start and stop codons in mRNA, determining where the translation process begins and ends.\r\n- `find_orf()` Identifies open reading frames (ORFs) within a DNA sequence, which are potential regions for protein-coding genes.\r\n- `extract_exons()` Extracts exon regions from a given DNA or RNA sequence.\r\n- `extract_introns()` Extracts intron regions from a DNA or RNA sequence.\r\n- `find_motif(motif)` Searches for occurrences of a specified motif within a DNA or RNA sequence.\r\n- `melting_temperature()` Calculates the melting temperature for DNA sequence.\r\n- `pairwise_align(seq)` Aligns main DNA sequence to another sequence\r\n- `codon_bias()` Analyzes codon usage to determine codon bias within a DNA or RNA sequence.\r\n- `translation()` Translates DNA ot RNA sequence into Protein sequence.\r\n- `kmer()` Analyzes the frequent k-mers within a DNA or RNA sequence.\r\n\r\n\r\n### Special Algorithms\r\n- `find_shared_motif(sequences)` Returns a shared motif sequence for a list of DNA or RNA sequences.\r\n- `longest_common_subsequence(sequences)` Superfast algorithm returns the longest common subsequence for a list of DNA or RNA sequences.\r\n- `hamming_distance(seq1,seq2)` Computes the difference between two DNA or RNA sequences.\r\n- `shortest_superstring(sequecnes)` Returns the shortest sequence that includes all sequences.\r\n\r\n### Credits\r\nThe development of GeneMaster would not have been possible without the contributions and support of the following individuals and resources:\r\n\r\nAhmed Osama: Creator and primary developer of the GeneMaster package.\r\nFor further information about these contributions and resources, please visit their respective websites and repositories.\r\n\r\nRepository : [GeneMaster](https://github.com/AhmedOs13/GeneMaster)\r\nPyPi: [GeneMaster](https://pypi.org/project/GeneMaster/)\r\n",
"bugtrack_url": null,
"license": null,
"summary": "A comprehensive package for DNA, RNA, and protein sequence analysis and visualization.",
"version": "1.0.1",
"project_urls": {
"Homepage": "https://github.com/AhmedOs13/GeneMaster"
},
"split_keywords": [],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "1535aed8d8ea8f5d3c6cb3b015f019e89508c2c95e642f56b60d300f872d5bc1",
"md5": "f6299beda2e0029add04417b5a2ead96",
"sha256": "8bd0718c1f1b1f92dbbce8d9b5a586b2f38440ad81099dbe3df305fccac93bce"
},
"downloads": -1,
"filename": "GeneMaster-1.0.1-py3-none-any.whl",
"has_sig": false,
"md5_digest": "f6299beda2e0029add04417b5a2ead96",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 13804,
"upload_time": "2024-09-03T21:17:51",
"upload_time_iso_8601": "2024-09-03T21:17:51.218241Z",
"url": "https://files.pythonhosted.org/packages/15/35/aed8d8ea8f5d3c6cb3b015f019e89508c2c95e642f56b60d300f872d5bc1/GeneMaster-1.0.1-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "efadebca948f7c8b8ff304d47521c0f68c156f54e624a9a887ff74752588f99e",
"md5": "80349c8c251f97089716144195c20039",
"sha256": "468131cdfd85de91203f3ab8ff19085a5e9cc0d8464d57462d74f472ce4eee05"
},
"downloads": -1,
"filename": "genemaster-1.0.1.tar.gz",
"has_sig": false,
"md5_digest": "80349c8c251f97089716144195c20039",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 10244,
"upload_time": "2024-09-03T21:17:52",
"upload_time_iso_8601": "2024-09-03T21:17:52.538283Z",
"url": "https://files.pythonhosted.org/packages/ef/ad/ebca948f7c8b8ff304d47521c0f68c156f54e624a9a887ff74752588f99e/genemaster-1.0.1.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-09-03 21:17:52",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "AhmedOs13",
"github_project": "GeneMaster",
"travis_ci": false,
"coveralls": false,
"github_actions": false,
"lcname": "genemaster"
}