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)

14 rows where transcript_id = 5774031

✎ 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
29499522 GT-AG 0 1.000000099473604e-05 1645 rna-XM_020372452.2 5774031 1 17569725 17571369 Cajanus cajan 3821 CAG|GTCAATCTCT...TTTCTTTTACTT/GTTTCTTTTACT...TGTAG|ATA 0 1 9.579
29499523 GT-AG 0 1.000000099473604e-05 1424 rna-XM_020372452.2 5774031 2 17571469 17572892 Cajanus cajan 3821 GAG|GTTGGCCATT...TGGACTTTAATA/ATTGTTTTCATT...TTCAG|GAT 0 1 13.793
29499524 GT-AG 0 1.000000099473604e-05 1040 rna-XM_020372452.2 5774031 3 17573016 17574055 Cajanus cajan 3821 ACA|GTTAAGTTAT...TACTTCTAAATA/TTACTTCTAAAT...TGCAG|GGA 0 1 19.029
29499525 GT-AG 0 1.000000099473604e-05 346 rna-XM_020372452.2 5774031 4 17574212 17574557 Cajanus cajan 3821 AAG|GTAATGACAC...TTATTTTTAGTG/TTTATTTTTAGT...TCTAG|GAG 0 1 25.67
29499526 GT-AG 0 0.0058122944432713 90 rna-XM_020372452.2 5774031 5 17574685 17574774 Cajanus cajan 3821 AAG|GTATTTTTAT...TCTTTCTTTAAT/AACATTCTCACT...GTCAG|AGG 1 1 31.077
29499527 GT-AG 0 1.000000099473604e-05 12707 rna-XM_020372452.2 5774031 6 17574840 17587546 Cajanus cajan 3821 AAG|GTGAGTTATA...TATTTTTTAGTT/AGTTATCTAACT...TGAAG|ACT 0 1 33.844
29499528 GT-AG 0 1.000000099473604e-05 146 rna-XM_020372452.2 5774031 7 17587712 17587857 Cajanus cajan 3821 AAG|GTTGGTATAT...TGCTTCTTAAAT/TTGCTTCTTAAA...ATTAG|ATG 0 1 40.868
29499529 GT-AG 0 1.000000099473604e-05 111 rna-XM_020372452.2 5774031 8 17587972 17588082 Cajanus cajan 3821 GAT|GTGAGCTAAA...ATTTTCTTTCCT/CTAATAATTATT...AACAG|ATG 0 1 45.722
29499530 GT-AG 0 0.0561108152864391 1480 rna-XM_020372452.2 5774031 9 17588230 17589709 Cajanus cajan 3821 AAG|GTTTCATTCT...TTTTCCTTACTG/GTTTTCCTTACT...TCTAG|GAA 0 1 51.98
29499531 GT-AG 0 1.000000099473604e-05 197 rna-XM_020372452.2 5774031 10 17590007 17590203 Cajanus cajan 3821 AAG|GTACAAAGAC...GTGTCTATAGTT/ATGTGGCTTACA...TTTAG|GAG 0 1 64.623
29499532 GT-AG 0 1.000000099473604e-05 943 rna-XM_020372452.2 5774031 11 17590270 17591212 Cajanus cajan 3821 AAA|GTAAGTCTCT...CATGCCTAATTT/GCATGCCTAATT...ACCAG|GAA 0 1 67.433
29499533 GT-AG 0 1.000000099473604e-05 243 rna-XM_020372452.2 5774031 12 17591416 17591658 Cajanus cajan 3821 TAG|GTTAGCCTGT...CTAATCTAAATT/ATCATACTAATC...TGCAG|GCG 2 1 76.075
29499534 GT-AG 0 1.000000099473604e-05 594 rna-XM_020372452.2 5774031 13 17591714 17592307 Cajanus cajan 3821 GAG|GTATGAAAAT...TTATGTTTAAAT/TTTAAATTGATT...TACAG|GTT 0 1 78.416
29499535 GT-AG 0 1.000000099473604e-05 317 rna-XM_020372452.2 5774031 14 17592497 17592813 Cajanus cajan 3821 CAG|GTGATTTCTT...GCTTTCTAAGTT/CCATTTTTTATG...TGCAG|TCT 0 1 86.462

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