Пример #1
0
def buildCDSFasta(infile, outfile):
    '''build cds sequences from peptide and cds file.

    *infile* is an ENSEMBL .cdna.all.fa.gz file.
    '''

    PGeneset.buildCDSFasta(infile, outfile)
Пример #2
0
def buildCDSFasta(infile, outfile):
    '''build cds sequences from peptide and cds file.
    
    *infile* is an ENSEMBL .cdna.all.fa.gz file.
    '''

    PGeneset.buildCDSFasta(infile, outfile)
Пример #3
0
def buildTranscripts(infile, outfile):
    '''build a collection of transcripts from the protein-coding
    section of the ENSEMBL gene set.

    Only CDS are used.
    '''
    PGeneset.buildProteinCodingTranscripts(infile, outfile)
Пример #4
0
def buildTranscripts(infile, outfile):
    '''build a collection of transcripts from the protein-coding
    section of the ENSEMBL gene set.

    Only CDS are used.
    '''
    PGeneset.buildProteinCodingTranscripts(infile, outfile)
Пример #5
0
def buildGenes(infile, outfile):
    '''build a collection of exons from the protein-coding
    section of the ENSEMBL gene set. The exons include both CDS
    and UTR.

    The set is filtered in the same way as in :meth:`buildGeneRegions`.
    '''
    PGeneset.buildProteinCodingGenes(infile, outfile)
Пример #6
0
def buildGeneRegions(infile, outfile):
    '''annotate genomic regions with reference gene set.

    Only considers protein coding genes. In case of overlapping
    genes, only take the longest (in genomic coordinates).
    Genes not on UCSC contigs are removed.
    '''
    PGeneset.buildGeneRegions(infile, outfile)
Пример #7
0
def buildGenes(infile, outfile):
    '''build a collection of exons from the protein-coding
    section of the ENSEMBL gene set. The exons include both CDS
    and UTR.

    The set is filtered in the same way as in :meth:`buildGeneRegions`.
    '''
    PGeneset.buildProteinCodingGenes(infile, outfile)
Пример #8
0
def buildGeneRegions(infile, outfile):
    '''annotate genomic regions with reference gene set.

    Only considers protein coding genes. In case of overlapping
    genes, only take the longest (in genomic coordinates).
    Genes not on UCSC contigs are removed.
    '''
    PGeneset.buildGeneRegions(infile, outfile)
Пример #9
0
def loadTranscripts(infile, outfile):
    '''load the transcript set.'''
    PGeneset.loadTranscripts(infile, outfile)
Пример #10
0
def loadGeneInformation(infile, outfile):
    '''load the transcript set.'''
    PGeneset.loadGeneInformation(infile, outfile)
Пример #11
0
def buildCDNAFasta(infile, outfile):
    '''load ENSEMBL peptide file
    
    *infile* is an ENSEMBL .cdna.all.fa.gz file.
    '''
    PGeneset.buildCDNAFasta(infile, outfile)
Пример #12
0
def buildCDNAFasta(infile, outfile):
    '''load ENSEMBL peptide file

    *infile* is an ENSEMBL .cdna.all.fa.gz file.
    '''
    PGeneset.buildCDNAFasta(infile, outfile)
Пример #13
0
def buildPeptideFasta(infile, outfile):
    '''load ENSEMBL peptide file

    *infile* is an ENSEMBL .pep.all.fa.gz file.
    '''
    PGeneset.buildPeptideFasta(infile, outfile)
Пример #14
0
def loadTranscriptInformation(infile, outfile):
    '''load the transcript set.'''
    PGeneset.loadTranscriptInformation(infile,
                                       outfile,
                                       only_proteincoding=PARAMS["ensembl_only_proteincoding"])
Пример #15
0
def loadTranscripts(infile, outfile):
    '''load the transcript set.'''
    PGeneset.loadTranscripts(infile, outfile)
Пример #16
0
def loadGeneInformation(infile, outfile):
    '''load the transcript set.'''
    PGeneset.loadGeneInformation(infile, outfile)
Пример #17
0
def loadTranscriptInformation(infile, outfile):
    '''load the transcript set.'''
    PGeneset.loadTranscriptInformation(
        infile,
        outfile,
        only_proteincoding=PARAMS["ensembl_only_proteincoding"])
Пример #18
0
def buildPeptideFasta(infile, outfile):
    '''load ENSEMBL peptide file
    
    *infile* is an ENSEMBL .pep.all.fa.gz file.
    '''
    PGeneset.buildPeptideFasta(infile, outfile)
Пример #19
0
def loadProteinStats(infile, outfile):
    '''load the transcript set.'''

    PGeneset.loadProteinStats(infile, outfile)
Пример #20
0
def importTranscriptInformation( infile, outfile ):
    '''import the transcript set.'''
    PGeneset.importTranscriptInformation( infile, outfile,
                                          only_proteincoding = PARAMS["geneset_only_proteincoding"] )
Пример #21
0
def importProteinStats( infile, outfile ):
    '''import the transcript set.'''

    PGeneset.importProteinStats( infile, outfile )
Пример #22
0
def loadProteinStats(infile, outfile):
    '''load the transcript set.'''

    PGeneset.loadProteinStats(infile, outfile)
Пример #23
0
def importTranscripts( infile, outfile ):
    '''import the transcript set.'''
    PGeneset.importTranscripts( infile, outfile )