class ExpressionUnits(SymEnum):
    "Units used in expression matrix"
    RPM = auto()
    RPKM = auto()
    FPKM = auto()
    TPM = auto()
    counts = auto()
Example #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()
Example #3
0
class Sample(SymEnum):
    """LRGASP sample identifier"""
    WTC11 = auto()
    H1_mix = auto()
    ES = auto()
    blood = auto()
    mouse_simulation = auto()
    human_simulation = auto()
Example #4
0
class Gencode(SymEnum):
    """LRGASP GENCODE version"""
    GENCODE_V38 = auto()
    GENCODE_VM27 = auto()
Example #5
0
class RefGenome(SymEnum):
    """LRGASP reference genomes"""
    GRCh38 = auto()
    GRCm39 = auto()
Example #6
0
class Repository(SymEnum):
    """Public data repositories"""
    SRA = auto()
    ENA = auto()
    INSDC = auto()
    ENC = auto()
Example #7
0
class Species(SymEnum):
    """Species identifiers"""
    human = auto()
    mouse = auto()
    manatee = auto()
    simulated = auto()
Example #8
0
class LibraryPrep(SymEnum):
    """Type of library prep"""
    CapTrap = auto()
    dRNA = auto()
    R2C2 = auto()
    cDNA = auto()
Example #9
0
class Platform(SymEnum):
    """Simplified sequencing platform, mostly used if figuring out LibraryCategory"""
    Illumina = auto()
    PacBio = auto()
    ONT = auto()
Example #10
0
class Platform(SymEnum):
    """Simplified sequencing platform"""
    Illumina = auto()
    PacBio = auto()
    ONT = auto()
class Challenge(SymEnum):
    """Challenge identifiers"""
    iso_detect_finished = auto()
    iso_quant = auto()
    iso_detect_draft = auto()
class ResultFileType(SymEnum):
    "type of a submitted data file"
    model_gtf = auto()
    read_model_map = auto()
    expression_matrix = auto()
class ExperimentType(SymEnum):
    "type of a experiment, assumed from Challenge type"
    model = auto()
    expression = auto()
Example #14
0
class Sample(SymEnum):
    """LRGASP sample identifier"""
    WTC11 = auto()
    H1_mix = auto()
    ES = auto()
    Manatee = auto()