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)

11 rows where transcript_id = 13851071

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: dinucleotide_pair, score, phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
73762878 GT-AG 0 0.0005878609590145 275 rna-XM_012977192.1 13851071 1 3726368 3726642 Erythranthe guttata 4155 TAG|GTTTTTTTTT...AATATTTTATAA/AAATATTTTATA...TGCAG|GGT 2 1 6.941
73762879 GT-AG 0 0.0012173957653368 970 rna-XM_012977192.1 13851071 2 3725287 3726256 Erythranthe guttata 4155 GAA|GTATGATTCT...GTTGTTATGATA/GTTGTTATGATA...TGCAG|GAC 2 1 9.713
73762880 GT-AG 0 1.000000099473604e-05 182 rna-XM_012977192.1 13851071 3 3724757 3724938 Erythranthe guttata 4155 CAT|GTAAGATTCT...CTAGCTCTGAAG/CTAGCTCTGAAG...TCTAG|GCC 2 1 18.402
73762881 GC-AG 0 1.000000099473604e-05 58 rna-XM_012977192.1 13851071 4 3724398 3724455 Erythranthe guttata 4155 GCT|GCTGAGACTC...TACATTTTGATA/CTGTGATTCACA...TGCAG|GTA 0 1 25.918
73762882 GT-AG 0 1.000000099473604e-05 312 rna-XM_012977192.1 13851071 5 3723960 3724271 Erythranthe guttata 4155 AGG|GTAAGAGCTA...ACTGTTATGACA/TATATATTCACT...TTCAG|GAG 0 1 29.064
73762883 GT-AG 0 1.000000099473604e-05 368 rna-XM_012977192.1 13851071 6 3723231 3723598 Erythranthe guttata 4155 GTT|GTGAGTACTT...TTCTTCATGATC/TCATGGTTAATT...TGCAG|CTG 1 1 38.077
73762884 GT-AG 0 1.000000099473604e-05 697 rna-XM_012977192.1 13851071 7 3722323 3723019 Erythranthe guttata 4155 TAG|GTTGGTGGTA...TGAGTTTGAGCT/TTTGAGCTTATG...ATAAG|CTT 2 1 43.346
73762885 GT-AG 0 1.000000099473604e-05 264 rna-XM_012977192.1 13851071 8 3721944 3722207 Erythranthe guttata 4155 CAG|GTAATTGCTT...CGTTTTTTGAAG/TATATATTGATT...TACAG|GAA 0 1 46.217
73762886 GT-AG 0 1.2165461375002805e-05 164 rna-XM_012977192.1 13851071 9 3721618 3721781 Erythranthe guttata 4155 TTG|GTAGGTCCAA...ATTTCCTTACTA/CATTTCCTTACT...TCCAG|GTC 0 1 50.262
73762887 GT-AG 0 1.000000099473604e-05 582 rna-XM_012977192.1 13851071 10 3720372 3720953 Erythranthe guttata 4155 CTG|GTTGGTAAAA...AATACCGTGATT/CCGTGATTTATC...CTCAG|GGC 1 1 66.841
73762888 GT-AG 0 1.000000099473604e-05 130 rna-XM_012977192.1 13851071 11 3720035 3720164 Erythranthe guttata 4155 CAG|GTGAGACTTT...ATCTCCTTGTTT/TCCTTGTTTATC...TGTAG|GGG 1 1 72.01

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 116.339ms · Data license: ODbL · Data source: Larue & Roy, 2023 · About: Minor Intron Database (WtMTA)