Пример #1
0
class ExpressionUnits(SymEnum):
    "Units used in expression matrix"
    RPM = auto()
    RPKM = auto()
    FPKM = auto()
    TPM = auto()
    counts = auto()
Пример #2
0
class DataCategory(SymEnum):
    """categories of experiments based on data accepted"""
    long_only = auto()
    short_only = auto()
    long_short = auto()
    long_genome = auto()
    kitchen_sink = auto()
Пример #3
0
class Sample(SymEnum):
    """LRGASP sample identifier"""
    WTC11 = auto()
    H1_mix = auto()
    ES = auto()
    blood = auto()
    mouse_simulation = auto()
    human_simulation = auto()
Пример #4
0
class Gencode(SymEnum):
    """LRGASP GENCODE version"""
    GENCODE_V38 = auto()
    GENCODE_VM27 = auto()
Пример #5
0
class RefGenome(SymEnum):
    """LRGASP reference genomes"""
    GRCh38 = auto()
    GRCm39 = auto()
Пример #6
0
class Repository(SymEnum):
    """Public data repositories"""
    SRA = auto()
    ENA = auto()
    INSDC = auto()
    ENC = auto()
Пример #7
0
class Species(SymEnum):
    """Species identifiers"""
    human = auto()
    mouse = auto()
    manatee = auto()
    simulated = auto()
Пример #8
0
class LibraryPrep(SymEnum):
    """Type of library prep"""
    CapTrap = auto()
    dRNA = auto()
    R2C2 = auto()
    cDNA = auto()
Пример #9
0
class Platform(SymEnum):
    """Simplified sequencing platform, mostly used if figuring out LibraryCategory"""
    Illumina = auto()
    PacBio = auto()
    ONT = auto()
Пример #10
0
class Platform(SymEnum):
    """Simplified sequencing platform"""
    Illumina = auto()
    PacBio = auto()
    ONT = auto()
Пример #11
0
class Challenge(SymEnum):
    """Challenge identifiers"""
    iso_detect_finished = auto()
    iso_quant = auto()
    iso_detect_draft = auto()
Пример #12
0
class ResultFileType(SymEnum):
    "type of a submitted data file"
    model_gtf = auto()
    read_model_map = auto()
    expression_matrix = auto()
Пример #13
0
class ExperimentType(SymEnum):
    "type of a experiment, assumed from Challenge type"
    model = auto()
    expression = auto()
Пример #14
0
class Sample(SymEnum):
    """LRGASP sample identifier"""
    WTC11 = auto()
    H1_mix = auto()
    ES = auto()
    Manatee = auto()