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)

12 rows where transcript_id = 15733665

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: score, phase, in_cds

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
84903063 GT-AG 0 0.0009468465753686 1320 rna-XM_017748522.1 15733665 2 131132644 131133963 Gossypium arboreum 29729 GTG|GTATGTGTGT...AGTTTCTTAAAG/AGTTCACTTATT...TATAG|GGC 1 1 9.394
84903064 GT-AG 0 1.000000099473604e-05 240 rna-XM_017748522.1 15733665 3 131134076 131134315 Gossypium arboreum 29729 GTG|GTATGGGGCT...CTAGTTTCGATT/GGAAAATTCACT...GACAG|GTA 2 1 12.553
84903065 GT-AG 0 1.000000099473604e-05 97 rna-XM_017748522.1 15733665 4 131134405 131134501 Gossypium arboreum 29729 CAG|GTTAGATAGT...TGTTTCTTTGCT/CTTTTGTTTATG...GACAG|GTT 1 1 15.063
84903066 GT-AG 0 1.000000099473604e-05 74 rna-XM_017748522.1 15733665 5 131134571 131134644 Gossypium arboreum 29729 CAG|GTTAGTTGTC...GATGAATTATCA/TGATGAATTATC...TGCAG|ATA 1 1 17.01
84903067 GT-AG 0 0.0001362066018887 560 rna-XM_017748522.1 15733665 6 131134775 131135334 Gossypium arboreum 29729 CAG|GTAATCTATT...TTTGTTTTGAAT/TTTGTTTTGAAT...TGTAG|GGA 2 1 20.677
84903068 GT-AG 0 1.000000099473604e-05 332 rna-XM_017748522.1 15733665 7 131135494 131135825 Gossypium arboreum 29729 AAG|GTAAATGATT...CTCTTCTTGAAC/CTTGAACTAATT...TGCAG|CTT 2 1 25.162
84903069 GT-AG 0 1.000000099473604e-05 1473 rna-XM_017748522.1 15733665 8 131136175 131137647 Gossypium arboreum 29729 AAG|GTAAGTTCCT...TTTCCCTTTCTC/CCCTTTCTCAGC...TGCAG|GAT 0 1 35.007
84903070 GT-AG 0 2.0035341802970656e-05 776 rna-XM_017748522.1 15733665 9 131137761 131138536 Gossypium arboreum 29729 CAG|GTACTGTGCT...GATGCCCTAATT/GTGATACTTATT...TACAG|CAA 2 1 38.195
84903071 GT-AG 0 0.0001699048768945 285 rna-XM_017748522.1 15733665 10 131138685 131138969 Gossypium arboreum 29729 CAG|GTATAATCCG...CTGTTCTGAATT/TCTGTTCTGAAT...TGCAG|GCT 0 1 42.37
84903072 GT-AG 0 1.000000099473604e-05 82 rna-XM_017748522.1 15733665 11 131139437 131139518 Gossypium arboreum 29729 CAG|GTAAGGTATT...TGCTTCTTGATG/ATTTATTTCATC...TGTAG|AGG 2 1 55.543
84903073 GT-AG 0 1.000000099473604e-05 99 rna-XM_017748522.1 15733665 12 131139721 131139819 Gossypium arboreum 29729 AAG|GTGGTGTATA...ATCTTCTCGACG/ATATTTATGATT...AATAG|GAA 0 1 61.241
84914387 GT-AG 0 0.0003343495506693 653 rna-XM_017748522.1 15733665 1 131131772 131132424 Gossypium arboreum 29729 CAG|GTTCGTTTTC...GTTTTCTTAACC/ATGATTTTGATT...TGTAG|CGA   0 4.457

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