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

✎ 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
29499025 GT-AG 0 1.000000099473604e-05 677 rna-XM_020362738.2 5773976 1 7991103 7991779 Cajanus cajan 3821 CAG|GTGATTTTCC...TGCGTCTTATTT/TTGCGTCTTATT...TTCAG|CTC 0 1 8.184
29499026 GT-AG 0 0.0001693517688905 121 rna-XM_020362738.2 5773976 2 7991942 7992062 Cajanus cajan 3821 ACG|GTCAGCTTTT...AATTTTTTAACT/AATTTTTTAACT...TACAG|GGA 0 1 13.264
29499027 GT-AG 0 1.000000099473604e-05 196 rna-XM_020362738.2 5773976 3 7992129 7992324 Cajanus cajan 3821 CAG|GTTGGCACAA...CATGCTGTAATT/GTGGATTTCATG...CCCAG|ATG 0 1 15.334
29499028 GT-AG 0 1.000000099473604e-05 135 rna-XM_020362738.2 5773976 4 7992469 7992603 Cajanus cajan 3821 AGG|GTAGGTCACA...CATTTTTCAATT/TTTTGCTTCATT...TGCAG|GAC 0 1 19.849
29499029 GT-AG 0 10.484981635365225 4760 rna-XM_020362738.2 5773976 5 7992718 7997477 Cajanus cajan 3821 GAG|GTATCTTTCT...TGAACTTTATTT/AATTTTCTGACA...AGTAG|ATT 0 1 23.424
29499030 GT-AG 0 0.0001129645964549 76 rna-XM_020362738.2 5773976 6 7997580 7997655 Cajanus cajan 3821 TCA|GTAAGTAATC...TCTTTTTTAGTT/TATTTTATCATA...TGCAG|CTG 0 1 26.623
29499031 GT-AG 0 1.000000099473604e-05 624 rna-XM_020362738.2 5773976 7 7997842 7998465 Cajanus cajan 3821 CAG|GTTAATATTA...TTGTTCTTGACG/ATTGGTTTTATT...TGCAG|AGT 0 1 32.455
29499032 GT-AG 0 1.000000099473604e-05 81 rna-XM_020362738.2 5773976 8 7998556 7998636 Cajanus cajan 3821 GAA|GTGAGTAACC...TTCCTTTTATTT/TATTTTCTAATT...TCTAG|GTT 0 1 35.278
29499033 GT-AG 0 2.307600430334039e-05 635 rna-XM_020362738.2 5773976 9 7998772 7999406 Cajanus cajan 3821 GAG|GTATTGCGTA...TGGATGTTAATA/TGGATGTTAATA...AACAG|GAC 0 1 39.511
29499034 GT-AG 0 0.0001120056850345 1404 rna-XM_020362738.2 5773976 10 7999530 8000933 Cajanus cajan 3821 AAG|GTAACGTTTG...AGGATTATAATG/ATTGAAATGATT...TGTAG|GTT 0 1 43.368
29499035 GT-AG 0 1.5159867117250146e-05 89 rna-XM_020362738.2 5773976 11 8001020 8001108 Cajanus cajan 3821 AAG|GTTTGTCATG...TTTTTATTGACT/TTTTTATTGACT...AATAG|TTT 2 1 46.065
29499036 GT-AG 0 4.305431186720319e-05 132 rna-XM_020362738.2 5773976 12 8001722 8001853 Cajanus cajan 3821 AAA|GTGAGCTCTC...GGGTTCTTAATT/TCCTTGCTAACT...TGCAG|GAA 0 1 65.287
29499037 GT-AG 0 1.000000099473604e-05 280 rna-XM_020362738.2 5773976 13 8001932 8002211 Cajanus cajan 3821 AAG|GTGAGATTCT...GCTCTTTTGAGA/CTGCATCTGACC...TGCAG|GCT 0 1 67.733

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