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 = 8594575

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: score, phase, in_cds

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
46265939 GT-AG 0 1.604512818039353e-05 489 rna-XM_006465174.2 8594575 2 13993123 13993611 Citrus sinensis 2711 GAT|GTAAGTGTGC...GACTCATTAATT/AATTTATTGATT...TTTAG|AAT 2 1 5.562
46265940 GT-AG 0 1.000000099473604e-05 596 rna-XM_006465174.2 8594575 3 13992415 13993010 Citrus sinensis 2711 CAG|GTAATTCCAA...TTATTTGTACTG/GGAGTGCTAAAT...TTCAG|TCG 0 1 8.191
46265941 GT-AG 0 1.000000099473604e-05 853 rna-XM_006465174.2 8594575 4 13991441 13992293 Citrus sinensis 2711 CAG|GTAGTGACAT...GTTTTTTTACTT/GGTTTTTTTACT...CATAG|TGT 1 1 11.03
46265942 GT-AG 0 0.0333458453502979 861 rna-XM_006465174.2 8594575 5 13989182 13990042 Citrus sinensis 2711 CAA|GTATGTTGTT...TTTCCATTAACT/CATTAACTTACA...GGTAG|CAT 1 1 43.839
46265943 GT-AG 0 5.415531505038758e-05 1571 rna-XM_006465174.2 8594575 6 13987540 13989110 Citrus sinensis 2711 AAG|GTAATTTTTC...CAAATTTTACTT/AATAATTTAACA...TGCAG|ATT 0 1 45.506
46265944 GT-AG 0 1.000000099473604e-05 280 rna-XM_006465174.2 8594575 7 13987185 13987464 Citrus sinensis 2711 CAG|GTAAGCGATC...TGTTTCTTATTA/CTGTTTCTTATT...GTCAG|CAT 0 1 47.266
46265945 GT-AG 0 5.39385004606673e-05 126 rna-XM_006465174.2 8594575 8 13985655 13985780 Citrus sinensis 2711 GCG|GTAAATATAT...GTTTTCTTAAAA/TGTTTGTTTATT...TTCAG|GTG 0 1 80.216
46265946 GT-AG 0 6.292168663947892e-05 431 rna-XM_006465174.2 8594575 9 13984879 13985309 Citrus sinensis 2711 GAG|GTATTGTACT...TCACTCTTAGGT/TTTATGTTCATC...TACAG|GCT 0 1 88.313
46265947 GT-AG 0 1.000000099473604e-05 87 rna-XM_006465174.2 8594575 10 13984591 13984677 Citrus sinensis 2711 ATG|GTGAGGTTTT...GTTTCCATGAAT/TCTGTATTTATT...TGCAG|TCA 0 1 93.03
46265948 GT-AG 0 1.000000099473604e-05 292 rna-XM_006465174.2 8594575 11 13984210 13984501 Citrus sinensis 2711 TAG|GTAAGGGAAT...CACACTTTGTTT/CCAAGTCTGACA...GACAG|TAA 2 1 95.119
46275503 GT-AG 0 1.767984023119738e-05 1409 rna-XM_006465174.2 8594575 1 13993731 13995139 Citrus sinensis 2711 AAG|GTTCTTCTTC...TTGTCATTGACT/TCTTTCCTCACC...TTTAG|AAT   0 2.91

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