Example #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)
Example #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)
Example #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)
Example #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)
Example #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)
Example #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)
Example #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)
Example #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)
Example #9
0
def loadTranscripts(infile, outfile):
    '''load the transcript set.'''
    PGeneset.loadTranscripts(infile, outfile)
Example #10
0
def loadGeneInformation(infile, outfile):
    '''load the transcript set.'''
    PGeneset.loadGeneInformation(infile, outfile)
Example #11
0
def buildCDNAFasta(infile, outfile):
    '''load ENSEMBL peptide file
    
    *infile* is an ENSEMBL .cdna.all.fa.gz file.
    '''
    PGeneset.buildCDNAFasta(infile, outfile)
Example #12
0
def buildCDNAFasta(infile, outfile):
    '''load ENSEMBL peptide file

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

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

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

    PGeneset.importProteinStats( infile, outfile )
Example #22
0
def loadProteinStats(infile, outfile):
    '''load the transcript set.'''

    PGeneset.loadProteinStats(infile, outfile)
Example #23
0
def importTranscripts( infile, outfile ):
    '''import the transcript set.'''
    PGeneset.importTranscripts( infile, outfile )