This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from django.views.generic import ListView | |
from django.db.models import Q | |
from models import GeneInformation, MirnaInformation | |
import re | |
from django.core.exceptions import FieldError | |
from base.views import Intragenic, Intergenic, HostGenes | |
class Search(ListView): | |
paginate_by = 10 |
NewerOlder