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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: score, length, phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
8696016 GT-AG 0 0.004825534789686 105 rna-XM_020230839.1 1565092 1 1232267 1232371 Ananas comosus 4615 AAG|GTATATGTTT...TTCGTTTTGATT/GTTTTATTGATT...TGAAG|TTT 0 1 9.508
8696017 GT-AG 0 1.000000099473604e-05 445 rna-XM_020230839.1 1565092 2 1232465 1232909 Ananas comosus 4615 GAG|GTTCGGTGTG...TTTTTTTTACCG/ATTTTTTTTACC...TGTAG|GAA 0 1 11.569
8696018 GT-AG 0 2.926489304672967e-05 157 rna-XM_020230839.1 1565092 3 1232973 1233129 Ananas comosus 4615 CAG|GTATGTCAAC...TTTGCTTTGCTG/GCTGTTTTCAAT...TGCAG|AGT 0 1 12.965
8696019 GT-AG 0 1.2718437188964626e-05 94 rna-XM_020230839.1 1565092 4 1233217 1233310 Ananas comosus 4615 CAG|GTGACATTTG...GATGGCTTATCT/ATTTGTTTCAAA...AACAG|ATG 0 1 14.894
8696020 GT-AG 0 1.8002280403678226 92 rna-XM_020230839.1 1565092 5 1233461 1233552 Ananas comosus 4615 GAG|GTATCCACTC...TTTATGTTGATG/CTTTTGCTGAAT...GTCAG|ATT 0 1 18.218
8696021 GT-AG 0 0.0013669849867548 995 rna-XM_020230839.1 1565092 6 1233711 1234705 Ananas comosus 4615 GAG|GTAGCTACAT...TTATCCATGATT/GTATTTGTGACC...TGCAG|ATT 2 1 21.72
8696022 GT-AG 0 1.000000099473604e-05 100 rna-XM_020230839.1 1565092 7 1234941 1235040 Ananas comosus 4615 AAG|GTGTGTCCAG...ATATTTTTAATA/ATATTTTTAATA...TATAG|TTG 0 1 26.928
8696023 GT-AG 0 1.000000099473604e-05 554 rna-XM_020230839.1 1565092 8 1235152 1235705 Ananas comosus 4615 AAG|GTGGGTAACA...TTTTCCTTTTCT/ACCTTTTTCATC...AACAG|CTT 0 1 29.388
8696024 GT-AG 0 1.000000099473604e-05 313 rna-XM_020230839.1 1565092 9 1236765 1237077 Ananas comosus 4615 GAG|GTGAAACTTT...TTTTCTTTTATA/TTTTCTTTTATA...TGTAG|GTT 0 1 52.859
8696025 GT-AG 0 3.038251879473318e-05 341 rna-XM_020230839.1 1565092 10 1237342 1237682 Ananas comosus 4615 CAG|GTACTTGGCA...ATTTCCCTAACA/TTTATGCTGATC...TCCAG|ATT 0 1 58.71
8696026 GT-AG 0 0.0002058917421145 157 rna-XM_020230839.1 1565092 11 1237869 1238025 Ananas comosus 4615 CAG|GTAACATCAT...CTCATTTTAATC/GTGTCACTCATT...TTCAG|AGA 0 1 62.832
8696027 GT-AG 0 0.050633507331092 331 rna-XM_020230839.1 1565092 12 1239178 1239508 Ananas comosus 4615 AAG|GTATGCTTAA...GCTCTTTTATTT/CTTTTATTTAAA...AACAG|GTG 0 1 88.364
8696028 GT-AG 0 0.0003855469821594 400 rna-XM_020230839.1 1565092 13 1239860 1240259 Ananas comosus 4615 CAG|GTATGTTATC...GACATCTTCTTT/ATGTGGCTAATT...TACAG|ATG 0 1 96.144

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