Package org.openbel.framework.common.model

Examples of org.openbel.framework.common.model.BELObject


        if (noItems(args)) {
            // Function arguments cannot be empty
            return false;
        }

        BELObject x = args.get(0);
        if (!(x instanceof Term)) {
            // First argument must be a term
            return false;
        }
View Full Code Here


     */
    @Override
    public List<Statement> expand(Term degradation) {
        List<Statement> statements = new ArrayList<Statement>();

        BELObject firstArgument = degradation.getFunctionArguments().get(0);
        Term protein = (Term) firstArgument; // only argument of a protein
                                             // degradation term is the protein

        // Protein degradation term connects to its protein with
        // DIRECTLY_DECREASES relationship
View Full Code Here

TOP

Related Classes of org.openbel.framework.common.model.BELObject

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.