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

✎ 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
8695841 GT-AG 0 1.000000099473604e-05 2698 rna-XM_020249560.1 1565081 1 13387130 13389827 Ananas comosus 4615 CAG|GTGCGTTCTT...TGGGCTATAACT/AACTATTTCATT...TGTAG|ATA 2 1 5.074
8695842 GT-AG 0 0.0063040911594283 143 rna-XM_020249560.1 1565081 2 13389910 13390052 Ananas comosus 4615 CGG|GTATGCAAAT...TATTTCTTACTT/GTATTTCTTACT...CTCAG|GAA 0 1 6.509
8695843 GT-AG 0 4.170312471445046e-05 75 rna-XM_020249560.1 1565081 3 13390170 13390244 Ananas comosus 4615 ATG|GTTTGTATCA...ATCTGTTTAATA/ATGGTGCTGATT...TCCAG|TAC 0 1 8.556
8695844 GT-AG 0 0.0118325316686287 83 rna-XM_020249560.1 1565081 4 13390418 13390500 Ananas comosus 4615 TGG|GTATGCAATT...TTTTTCTTCATT/TTTTTCTTCATT...TTCAG|TGG 2 1 11.584
8695845 GT-AG 0 1.5010924369697225e-05 118 rna-XM_020249560.1 1565081 5 13391318 13391435 Ananas comosus 4615 GAG|GTAAGCAAGT...CTTTCCTTATTA/CCTTTCCTTATT...TGTAG|GCT 0 1 25.879
8695846 GT-AG 0 1.000000099473604e-05 105 rna-XM_020249560.1 1565081 6 13391534 13391638 Ananas comosus 4615 GCG|GTAATGGCAA...TTTGCATTATTC/TCTATATTCATT...TTCAG|AAG 2 1 27.594
8695847 GT-AG 0 1.000000099473604e-05 919 rna-XM_020249560.1 1565081 7 13392048 13392966 Ananas comosus 4615 CAG|GTAATACTGA...CATTCTTTATTT/CCATTCTTTATT...TGCAG|GGT 0 1 34.751
8695848 GT-AG 0 1.000000099473604e-05 312 rna-XM_020249560.1 1565081 8 13393567 13393878 Ananas comosus 4615 CAG|GTACTAACAT...TAGGCTTTGGTT/TGGAGTCTCACC...TGCAG|GCG 0 1 45.249
8695849 GT-AG 0 2.7519543978469927e-05 106 rna-XM_020249560.1 1565081 9 13394059 13394164 Ananas comosus 4615 GAG|GTTTAATATG...TGGATTTTAAAC/TATTTTGTAATG...ATCAG|ATA 0 1 48.399
8695850 GT-AG 0 0.0007418869218263 356 rna-XM_020249560.1 1565081 10 13394672 13395027 Ananas comosus 4615 CAG|GTATGTTCTT...CAAATCGTAATT/CAAATCGTAATT...TACAG|GTT 0 1 57.27
8695851 GT-AG 0 1.000000099473604e-05 177 rna-XM_020249560.1 1565081 11 13395139 13395315 Ananas comosus 4615 GCG|GTAAGAGATG...GGTTTATTGACG/TTTGGGTTTATT...GATAG|ATA 0 1 59.213
8695852 GT-AG 0 1.000000099473604e-05 87 rna-XM_020249560.1 1565081 12 13395435 13395521 Ananas comosus 4615 GAG|GTCCAGCATC...TGTCCCTTCACT/TTAGTTCTCATA...TGCAG|GGA 2 1 61.295
8695853 GT-AG 0 0.0007278842752595 546 rna-XM_020249560.1 1565081 13 13397017 13397562 Ananas comosus 4615 GAG|GTACCAGCTA...ATTTTCTTACTC/AATTTTCTTACT...TGTAG|GTA 0 1 87.454

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