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

✎ 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
11507472 GT-AG 0 1.5048426771052448e-05 397 rna-XM_009865770.1 2107346 1 7036 7432 Apaloderma vittatum 57397 TGT|GTAAGTGCAG...TGTCCTTTATTC/TTGTCCTTTATT...TTCAG|GTA 0 1 4.656
11507473 GT-AG 0 1.3145273332545108e-05 231 rna-XM_009865770.1 2107346 2 7559 7789 Apaloderma vittatum 57397 AAT|GTAAGTTTTG...ATAGCCTGTTCC/TGTGTGCTGATA...TTCAG|GAA 0 1 13.158
11507474 GT-AG 0 1.000000099473604e-05 414 rna-XM_009865770.1 2107346 3 7854 8267 Apaloderma vittatum 57397 AAG|GTGAGGCTGC...CTGCCCTTTGCT/CTCTGCCTGAGC...CCCAG|ATG 1 1 17.476
11507475 GT-AG 0 3.929574130365936e-05 459 rna-XM_009865770.1 2107346 4 8396 8854 Apaloderma vittatum 57397 ACT|GTACGTGGGT...GTGCTCTCACTG/CGTGCTCTCACT...CGCAG|TAT 0 1 26.113
11507476 GT-AG 0 1.000000099473604e-05 108 rna-XM_009865770.1 2107346 5 8938 9045 Apaloderma vittatum 57397 AAG|GTAACAGCGG...TTTTTCTAAGAA/TTATGTCTGATT...AACAG|CCA 2 1 31.714
11507477 GT-AG 0 1.000000099473604e-05 200 rna-XM_009865770.1 2107346 6 9230 9429 Apaloderma vittatum 57397 CAG|GTAAGTCACA...TGTTTCTTGTTT/ATGTAACTGAAG...CCCAG|GTA 0 1 44.13
11507478 GT-AG 0 1.000000099473604e-05 468 rna-XM_009865770.1 2107346 7 9496 9963 Apaloderma vittatum 57397 CGG|GTCAGTATAA...TCTGTCTTCACG/GCTTTACTGATC...TCTAG|GGG 0 1 48.583
11507479 GT-AG 0 1.000000099473604e-05 597 rna-XM_009865770.1 2107346 8 10067 10663 Apaloderma vittatum 57397 TCG|GTAAGGAGGT...CAAACCTTGGCA/TGTGTTCTCACA...CACAG|GGG 1 1 55.533
11507480 GT-AG 0 1.000000099473604e-05 756 rna-XM_009865770.1 2107346 9 10849 11604 Apaloderma vittatum 57397 AAG|GTACAGCGCT...GCGAGTTTGATC/GCGAGTTTGATC...GGCAG|CTC 0 1 68.016
11507481 GT-AG 0 1.000000099473604e-05 83 rna-XM_009865770.1 2107346 10 11839 11921 Apaloderma vittatum 57397 CTC|GTAAGTCCCT...GACACCGTGATG/CCGTGATGCACG...TCCAG|GTG 0 1 83.806
11507482 GT-AG 0 1.000000099473604e-05 839 rna-XM_009865770.1 2107346 11 12027 12865 Apaloderma vittatum 57397 CTG|GTAAGTGACG...GCTGCTTTCTCT/CAGGTGCTGACG...CTCAG|GCG 0 1 90.891
11507483 GT-AG 0 1.000000099473604e-05 723 rna-XM_009865770.1 2107346 12 12959 13681 Apaloderma vittatum 57397 AAG|GTAAGGCTGC...CGTGCCTTAACG/CCAAAACTCAGC...ATCAG|GAA 0 1 97.166

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