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

✎ 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
2418403 GT-AG 0 1.000000099473604e-05 1657 rna-XM_015903390.1 410600 2 482494 484150 Acropora digitifera 70779 TAG|GTGAGAGAAT...TATTTGTTAATT/TATTTGTTAATT...TTTAG|CTG 2 1 15.397
2418404 GT-AG 0 1.000000099473604e-05 758 rna-XM_015903390.1 410600 3 484321 485078 Acropora digitifera 70779 AAG|GTAAATTCTC...TAACTTTCGACT/GATTAACTGATT...AATAG|GTA 1 1 20.861
2418405 GT-AG 0 1.000000099473604e-05 211 rna-XM_015903390.1 410600 4 485253 485463 Acropora digitifera 70779 CTG|GTAAGAGAGA...TGTTCCTAAGAG/CACCGTTTAATT...GCTAG|GAG 1 1 26.455
2418406 GT-AG 0 0.0003261448847895 421 rna-XM_015903390.1 410600 5 485823 486243 Acropora digitifera 70779 AAG|GTATGTGTCA...GTTTTATTGATT/GTTTTATTGATT...TTCAG|AAA 0 1 37.994
2418407 GT-AG 0 1.000000099473604e-05 398 rna-XM_015903390.1 410600 6 486524 486921 Acropora digitifera 70779 CAG|GTAAAAGTTT...ACTTCGTTAAGT/ACTTCGTTAAGT...TACAG|AAT 1 1 46.995
2418408 GT-AG 0 9.615851009250184e-05 995 rna-XM_015903390.1 410600 7 487140 488134 Acropora digitifera 70779 TGG|GTCTGTATCA...TTCTTCTTGTTT/TGTCACTTCACG...CTTAG|TAC 0 1 54.002
2418409 GT-AG 0 1.000000099473604e-05 369 rna-XM_015903390.1 410600 8 488404 488772 Acropora digitifera 70779 TTG|GTGAGGAGTC...ATTATCTTGAAA/AAATATTTAATT...ACCAG|GTG 2 1 62.649
2418410 GT-AG 0 1.000000099473604e-05 395 rna-XM_015903390.1 410600 9 488844 489238 Acropora digitifera 70779 TCG|GTAAGAGTAT...GTCTTTTTGAAT/GTCTTTTTGAAT...TGCAG|GTT 1 1 64.931
2418411 GT-AG 0 6.224593087496761e-05 305 rna-XM_015903390.1 410600 10 489289 489593 Acropora digitifera 70779 CAG|GTAAATTTTC...TTCTCTTTCATC/TTCTCTTTCATC...ACCAG|GCG 0 1 66.538
2418412 GT-AG 0 0.0036314250127066 275 rna-XM_015903390.1 410600 11 489957 490231 Acropora digitifera 70779 CAA|GTATGTTGAA...GTTCTTGTGATT/GTTCTTGTGATT...AACAG|ATT 0 1 78.206
2418413 GT-AG 0 1.000000099473604e-05 470 rna-XM_015903390.1 410600 12 490497 490966 Acropora digitifera 70779 GTG|GTGAGTAAGG...CTTTTCTTGTTT/TTCTTGTTTAAT...TGCAG|TGA 1 1 86.725
2418414 GT-AG 0 1.000000099473604e-05 135 rna-XM_015903390.1 410600 13 491244 491378 Acropora digitifera 70779 GAG|GTGAGTAACC...CTTTTCTTGTAT/AAGATTTTCAGA...TTCAG|TCA 2 1 95.628
2419645 GT-AG 0 1.6412144239378418e-05 4744 rna-XM_015903390.1 410600 1 477271 482014 Acropora digitifera 70779 AAG|GTAGAGTTCA...CTCTTTTTAGTT/TGATTTCTGACG...CTTAG|GCA   0 0.868

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