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

✎ 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
48347832 GT-AG 0 1.000000099473604e-05 1197 rna-XM_010203263.1 8980477 1 397 1593 Colius striatus 57412 ATT|GTGAGTTGCC...TTTTTCCTAACT/TTTTTCCTAACT...TCTAG|CTA 2 1 6.054
48347833 GT-AG 0 1.000000099473604e-05 992 rna-XM_010203263.1 8980477 2 1679 2670 Colius striatus 57412 AAG|GTGAGTAAAT...CACACTGTACCA/TATGGGTTTATG...CACAG|GAA 0 1 12.254
48347834 GT-AG 0 1.000000099473604e-05 1309 rna-XM_010203263.1 8980477 3 2770 4078 Colius striatus 57412 GAG|GTACAGTGTC...ATTCTCTGTGCT/TGAGAAGTAATT...CAAAG|GAG 0 1 19.475
48347835 GT-AG 0 1.000000099473604e-05 439 rna-XM_010203263.1 8980477 4 4169 4607 Colius striatus 57412 CAG|GTAAAGCGTC...CATTCTTTAAAA/CATTCTTTAAAA...TCCAG|GAC 0 1 26.039
48347836 GT-AG 0 5.730567158468445e-05 5912 rna-XM_010203263.1 8980477 5 4655 10566 Colius striatus 57412 CAG|GTATGTAAGA...TCCCTTTTATAT/TGGAGTTTGACT...TCCAG|AGA 2 1 29.468
48347837 GT-AG 0 1.000000099473604e-05 657 rna-XM_010203263.1 8980477 6 10709 11365 Colius striatus 57412 CAG|GTAGGAGAGA...ATTTCCTAAGAC/GATTTCCTAAGA...CTCAG|ATA 0 1 39.825
48347838 GT-AG 0 1.2306651635732213e-05 390 rna-XM_010203263.1 8980477 7 11456 11845 Colius striatus 57412 GAG|GTACAGTACA...CTGTTCTGAGTT/ACTGTTCTGAGT...TTCAG|CGG 0 1 46.389
48347839 GT-AG 0 1.000000099473604e-05 787 rna-XM_010203263.1 8980477 8 11895 12681 Colius striatus 57412 AGA|GTTAGCGAGT...TTTTTCTTCCCC/ACATATCTAATA...CTTAG|GCT 1 1 49.964
48347840 GT-AG 0 1.000000099473604e-05 1225 rna-XM_010203263.1 8980477 9 12786 14010 Colius striatus 57412 GAG|GTAAGGCAAT...GAGTTCTTAACT/TCTTAACTGATT...TTCAG|GCC 0 1 57.549
48347841 GT-AG 0 1.000000099473604e-05 1311 rna-XM_010203263.1 8980477 10 14090 15400 Colius striatus 57412 AAT|GTGAGTATTT...TGTTCCTTGAGT/TGAGTCCTAACG...TTCAG|CTT 1 1 63.311
48347842 GT-AG 0 1.000000099473604e-05 5257 rna-XM_010203263.1 8980477 11 15484 20740 Colius striatus 57412 CAG|GTGAGTTCCT...CAGCTTTTCATT/CAGCTTTTCATT...TCCAG|GAT 0 1 69.365
48347843 GT-AG 0 1.000000099473604e-05 1358 rna-XM_010203263.1 8980477 12 20822 22179 Colius striatus 57412 CAA|GTAAGTCAGG...TCTTCTGTATAT/ACAAAATTGACC...CACAG|ACC 0 1 75.274
48347844 GT-AG 0 1.1431068177540685e-05 645 rna-XM_010203263.1 8980477 13 22350 22994 Colius striatus 57412 CAG|GTACAGTTAA...TCTGCTTTCAAA/TCTGCTTTCAAA...TGCAG|CTG 2 1 87.673

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