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)

12 rows where transcript_id = 16457571

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: score, length, phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
87511702 GT-AG 0 1.000000099473604e-05 107 Gotom.A01G187400.1.v1.1 16457571 1 90912744 90912850 Gossypium tomentosum 34277 CAG|GTTCAACTGA...TATTTTTTAATT/TATTTTTTAATT...TTTAG|GTA 0 1 1.447
87511703 GT-AG 0 0.0003153421211541 76 Gotom.A01G187400.1.v1.1 16457571 2 90913112 90913187 Gossypium tomentosum 34277 AAG|GTTTCGTAGA...TGATTTTTATGT/ATGATTTTTATG...TGCAG|GAA 0 1 6.288
87511704 GT-AG 0 1.000000099473604e-05 30 Gotom.A01G187400.1.v1.1 16457571 3 90914844 90914873 Gossypium tomentosum 34277 GAT|GTTCTGCAAA...AAGATCTTGAAC/AAGATCTTGAAC...AAGAG|GAG 0 1 37.006
87511705 GT-AG 0 1.000000099473604e-05 47 Gotom.A01G187400.1.v1.1 16457571 4 90915283 90915329 Gossypium tomentosum 34277 ATA|GTTGATGGAA...AGTCTAGTAACC/AGTCTAGTAACC...GTTAG|CCC 1 1 44.593
87511706 GT-AG 0 1.000000099473604e-05 123 Gotom.A01G187400.1.v1.1 16457571 5 90916190 90916312 Gossypium tomentosum 34277 GAG|GTGATGTCAA...ATTTCCTGAATG/TTGTTACTAAAT...CACAG|GAT 0 1 60.545
87511707 GT-AG 0 1.682046857175186e-05 57 Gotom.A01G187400.1.v1.1 16457571 6 90917043 90917099 Gossypium tomentosum 34277 CTG|GTCTGTTGAA...TTATCAATGACA/GAAGTTATCAAT...TCAAG|ATC 1 1 74.086
87511708 GT-AG 0 1.000000099473604e-05 36 Gotom.A01G187400.1.v1.1 16457571 7 90917767 90917802 Gossypium tomentosum 34277 GGG|GTAAAAAAAG...GAACTTTTGTCA/ACTTTTGTCATC...AATAG|TTT 2 1 86.459
87511709 GT-AG 0 1.000000099473604e-05 554 Gotom.A01G187400.1.v1.1 16457571 8 90917823 90918376 Gossypium tomentosum 34277 AAG|GTAAATGTTT...TAATCTTTATTA/TGAATTTTTATT...TGCAG|AAG 1 1 86.83
87511710 GT-AG 0 1.000000099473604e-05 57 Gotom.A01G187400.1.v1.1 16457571 9 90918511 90918567 Gossypium tomentosum 34277 TCT|GTTATTGGTA...TGCTCTCTAATG/GTTTCACTGATT...AAAAG|GAA 0 1 89.316
87511711 GT-AG 0 1.000000099473604e-05 928 Gotom.A01G187400.1.v1.1 16457571 10 90918901 90919828 Gossypium tomentosum 34277 AAG|GTTAAGTGAA...TTTACTTTATTG/CTAATTCTAATT...TGCAG|GGA 0 1 95.492
87511712 GT-AG 0 1.000000099473604e-05 194 Gotom.A01G187400.1.v1.1 16457571 11 90919888 90920081 Gossypium tomentosum 34277 TAT|GTGAAAAGGA...AAGCCTCTAACT/AAGCCTCTAACT...ACAAG|TCG 2 1 96.587
87511713 GT-AG 0 1.000000099473604e-05 139 Gotom.A01G187400.1.v1.1 16457571 12 90920163 90920301 Gossypium tomentosum 34277 CTG|GTAAAATCCT...ATGTTTTTAATT/ATGTTTTTAATT...TGGAG|GGT 2 1 98.089

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