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

✎ 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
99734842 GT-AG 0 3.576619240508208 385 rna-XM_018961098.2 18699297 1 7004478 7004862 Juglans regia 51240 CAC|GTATGCTTCA...CTTCTTTTAATT/CTTCTTTTAATT...AATAG|TGG 1 1 1.746
99734843 GT-AG 0 1.000000099473604e-05 4065 rna-XM_018961098.2 18699297 2 7000306 7004370 Juglans regia 51240 CAG|GTTTGTGGGG...TTGTTTTTATTT/TTTGTTTTTATT...TTCAG|TAT 0 1 2.444
99734844 GT-AG 0 0.0773649191297705 93 rna-XM_018961098.2 18699297 3 7000047 7000139 Juglans regia 51240 AAG|GTATTTTTGT...GTAGTCTTGATG/GTTATTGTGATT...AAAAG|GTA 1 1 3.526
99734845 GT-AG 0 0.0001040652455358 3648 rna-XM_018961098.2 18699297 4 6990307 6993954 Juglans regia 51240 AAG|GTTTTATTTC...GTGTTCTCAGCT/ACTTCTCTAATT...CACAG|ATA 0 1 43.226
99734846 GT-AG 0 1.2172474300284796e-05 120 rna-XM_018961098.2 18699297 5 6989569 6989688 Juglans regia 51240 CAA|GTACTACTAA...GCATCTTTCAAT/TTCAATCTAACT...CTCAG|GTT 0 1 47.253
99734847 GT-AG 0 0.1119559860266686 1477 rna-XM_018961098.2 18699297 6 6987911 6989387 Juglans regia 51240 ATG|GTATCATTAC...TTGGGTTTAGTA/TTTGGGTTTAGT...CACAG|GTT 1 1 48.433
99734848 GT-AG 0 0.0139875492430723 91 rna-XM_018961098.2 18699297 7 6987588 6987678 Juglans regia 51240 CAG|GTACACTTCT...ATGTCCTTGCTT/TTATACTTCACT...TTCAG|CTT 2 1 49.945
99734849 GT-AG 0 1.3098982693509273e-05 82 rna-XM_018961098.2 18699297 8 6982946 6983027 Juglans regia 51240 CAG|GTATGACATC...CGTTTCTTTTCT/TACCATTTGATC...GCCAG|ATT 2 1 79.661
99734850 GT-AG 0 1.000000099473604e-05 250 rna-XM_018961098.2 18699297 9 6982473 6982722 Juglans regia 51240 CTG|GTATGAAAAA...ATTATGTTGATG/ATTATGTTGATG...TGCAG|TTT 0 1 81.114
99734851 GT-AG 0 1.000000099473604e-05 383 rna-XM_018961098.2 18699297 10 6981688 6982070 Juglans regia 51240 CAG|GTGTGTTGAT...CATTTTTTACTG/GCATTTTTTACT...GGCAG|GGA 0 1 83.734
99734852 GT-AG 0 1.000000099473604e-05 1619 rna-XM_018961098.2 18699297 11 6979925 6981543 Juglans regia 51240 AAG|GTGCGTGGGC...TTGTTTTTAACC/TTGTTTTTAACC...TGCAG|CGT 0 1 84.673
99734853 GT-AG 0 1.0919645125901462e-05 572 rna-XM_018961098.2 18699297 12 6978327 6978898 Juglans regia 51240 CAG|GTAATTATTC...ATTTCCTTGCTG/TGGAAACTGATT...AACAG|GGG 0 1 91.359
99734854 GT-AG 0 0.0014663026438111 428 rna-XM_018961098.2 18699297 13 6977395 6977822 Juglans regia 51240 CTG|GTACATTACT...CATGTCTTATCC/TTGGTTTTCATG...TGTAG|ATG 0 1 94.643

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