seqsearch.databases.nr

Written by Lucas Sinclair. MIT Licensed. Contact at www.sinclair.bio

 1#!/usr/bin/env python3
 2# -*- coding: utf-8 -*-
 3
 4"""
 5Written by Lucas Sinclair.
 6MIT Licensed.
 7Contact at www.sinclair.bio
 8"""
 9
10# Built-in modules #
11
12# Internal modules #
13
14# First party modules #
15
16###############################################################################
17class NonRedundant(object):
18    """
19    The NR database from NCBI.
20    NR contains non-redundant sequences from GenBank translations
21    (i.e. GenPept) together with sequences from other databanks
22    (Refseq, PDB, SwissProt, PIR and PRF).
23    """
class NonRedundant:
18class NonRedundant(object):
19    """
20    The NR database from NCBI.
21    NR contains non-redundant sequences from GenBank translations
22    (i.e. GenPept) together with sequences from other databanks
23    (Refseq, PDB, SwissProt, PIR and PRF).
24    """

The NR database from NCBI. NR contains non-redundant sequences from GenBank translations (i.e. GenPept) together with sequences from other databanks (Refseq, PDB, SwissProt, PIR and PRF).