Package au.org.intersect.samifier.domain

Examples of au.org.intersect.samifier.domain.GeneSequence


                }
                if (GENE_RE.matcher(type).matches()) {
                    GeneInfo gene = parseGene(parts);
                    processGene(genome, gene);
                } else if (SEQUENCE_RE.matcher(type).find()) {
                    GeneSequence sequence = parseSequence(parts);
                    processSequence(genome, parts[CHROMOSOME_PART], sequence);
                }
            }
        } finally {
            if (reader != null) {
View Full Code Here


        int stop = Integer.parseInt(parts[STOP_PART]);
        String direction = parts[STRAND_PART];
        if (start > stop) {
            throwParsingException("Start-stop invalid");
        }
        return new GeneSequence(extractParent(parts[ATTRIBUTES_PART]), parseSequenceType(type), start, stop, parseStrand(direction), parseVirtualProteins(extractParent(parts[ATTRIBUTES_PART]), parts[ATTRIBUTES_PART]));
    }
View Full Code Here

TOP

Related Classes of au.org.intersect.samifier.domain.GeneSequence

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.