home / WtMTA

introns

Data license: ODbL · Data source: Larue & Roy, 2023 · About: Minor Intron Database (WtMTA)

id
INTEGER (primary key), globally unique identifier for each intron
dinucleotide_pair
TEXT, terminal dinucleotide sequences of the intron
is_minor
INTEGER, indicates if the intron is a minor intron (1) or not (0)
score
REAL, score representing the probability (0-100%) of the intron being minor
length
INTEGER, length of the intron in base pairs
transcript_id
INTEGER (foreign key referencing transcripts(id)), parent transcript
ordinal_index
INTEGER, ordinal position of the intron within the transcript (e.g., 3 for the third intron)
start
INTEGER, start position of the intron in the genome
end
INTEGER, end position of the intron in the genome
taxonomy_id
INTEGER (foreign key referencing genomes(taxonomy_id)), NCBI taxonomy identifier for species
scored_motifs
TEXT, motifs scored for the intron
phase
INTEGER, phase of the intron in coding sequence (0, 1, or 2 or null for introns outside of coding sequence)
in_cds
INTEGER, indicates if the intron is within the coding sequence (1) or not (0; e.g., UTR introns)
relative_position
REAL, relative position of the intron within the transcript (as a percentage of coding length)

13 rows where transcript_id = 29006304

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: score, phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
161699904 GT-AG 0 1.000000099473604e-05 8807 rna-XM_043576011.1 29006304 1 8516942 8525748 Prionailurus bengalensis 37029 GAG|GTAAGAGACT...GCTCCTTTCATG/CTTCTGGTCATT...TGTAG|GTG 0 1 53.683
161699905 GT-AG 0 1.000000099473604e-05 44331 rna-XM_043576011.1 29006304 2 8525990 8570320 Prionailurus bengalensis 37029 CAG|GTAAGCGATC...ATTTTTTTCGTT/TGTCAACTGATT...TATAG|CAG 1 1 59.543
161699906 GT-AG 0 1.000000099473604e-05 142070 rna-XM_043576011.1 29006304 3 8570519 8712588 Prionailurus bengalensis 37029 ACC|GTAAGTGGGC...TTTTTCATGAAG/CCATTTTTCATG...CACAG|GGT 1 1 64.357
161699907 GT-AG 0 1.000000099473604e-05 29097 rna-XM_043576011.1 29006304 4 8712751 8741847 Prionailurus bengalensis 37029 CTG|GTAAGACTGT...CTCCTTTTAAAC/TGAGTTGTAACT...ATTAG|GAT 1 1 68.296
161699908 GT-AG 0 3.688470147544606e-05 11362 rna-XM_043576011.1 29006304 5 8741947 8753308 Prionailurus bengalensis 37029 CAG|GTATTTAAGA...CTGTTTTTCCCC/TGTTGTCACACT...CGCAG|GAT 1 1 70.703
161699909 GT-AG 0 1.000000099473604e-05 77344 rna-XM_043576011.1 29006304 6 8753521 8830864 Prionailurus bengalensis 37029 AAG|GTGAGGCCAC...TCCGTTTTGTTT/TCTGGCGTAAAA...TTCAG|AAT 0 1 75.857
161699910 GT-AG 0 1.000000099473604e-05 34634 rna-XM_043576011.1 29006304 7 8830932 8865565 Prionailurus bengalensis 37029 TTG|GTAAGTAGGG...TGCCCCCGAACC/AAAGATGTCATT...GCCAG|CCT 1 1 77.486
161699911 GT-AG 0 1.000000099473604e-05 7028 rna-XM_043576011.1 29006304 8 8865781 8872808 Prionailurus bengalensis 37029 CAG|GTCAGTGTCT...GTAACCATAGCT/CTGTGTGTAACC...TTCAG|GTA 0 1 82.713
161699912 GT-AG 0 0.0009120495090468 2327 rna-XM_043576011.1 29006304 9 8872915 8875241 Prionailurus bengalensis 37029 AAG|GTAGCTACCG...ACCACATTAACT/TCTTGTTTGATC...TCCAG|AAC 1 1 85.291
161699913 GT-AG 0 1.000000099473604e-05 3999 rna-XM_043576011.1 29006304 10 8875316 8879314 Prionailurus bengalensis 37029 CAG|GTTAATATTC...GCCTTCTTGTCA/CTTCTTGTCATG...TGCAG|GAC 0 1 87.09
161699914 GT-AG 0 1.000000099473604e-05 1121 rna-XM_043576011.1 29006304 11 8879414 8880534 Prionailurus bengalensis 37029 GAG|GTAGTCATAC...TGTGCTGGGACC/CCGCTGGTGACC...TGTAG|ATT 0 1 89.497
161699915 GT-AG 0 1.000000099473604e-05 2518 rna-XM_043576011.1 29006304 12 8880655 8883172 Prionailurus bengalensis 37029 CTG|GTGAGTCGGC...AACCTCTTAACA/AACCTCTTAACA...TATAG|GCG 0 1 92.414
161699916 GT-AG 0 1.000000099473604e-05 3984 rna-XM_043576011.1 29006304 13 8883271 8887254 Prionailurus bengalensis 37029 AAG|GTAGGGGGGC...CGTTTCTTACTC/TCGTTTCTTACT...CGCAG|ACA 2 1 94.797

Advanced export

JSON shape: default, array, newline-delimited, object

CSV options:

CREATE TABLE "introns" (
"id" INTEGER,
  "dinucleotide_pair" TEXT,
  "is_minor" INTEGER,
  "score" REAL,
  "length" INTEGER,
  "transcript_id" INTEGER,
  "ordinal_index" INTEGER,
  "start" INTEGER,
  "end" INTEGER,
  "taxonomy_id" INTEGER,
  "scored_motifs" TEXT,
  "phase" INTEGER,
  "in_cds" INTEGER,
  "relative_position" REAL
  ,PRIMARY KEY ([id]),
   FOREIGN KEY([transcript_id]) REFERENCES [transcripts]([id]),
   FOREIGN KEY([taxonomy_id]) REFERENCES [genomes]([taxonomy_id])
);
CREATE INDEX [idx_introns_transcript_id]
    ON [introns] ([transcript_id]);
CREATE INDEX [idx_introns_taxonomy_id]
    ON [introns] ([taxonomy_id]);
CREATE INDEX [idx_introns_phase]
    ON [introns] ([phase]);
CREATE INDEX [idx_introns_is_minor]
    ON [introns] ([is_minor]);
CREATE INDEX [idx_introns_dinucleotide_pair]
    ON [introns] ([dinucleotide_pair]);
CREATE INDEX [idx_introns_score]
    ON [introns] ([score]);
CREATE INDEX [idx_introns_in_cds]
    ON [introns] ([in_cds]);
Powered by Datasette · Queries took 29.181ms · Data license: ODbL · Data source: Larue & Roy, 2023 · About: Minor Intron Database (WtMTA)