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

✎ 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
125746713 GT-AG 0 1.000000099473604e-05 147 rna-NM_001302856.1 23121175 2 13411431 13411577 Nelumbo nucifera 4432 GCG|GTAAGTATAG...ACGTATTTAGCT/AATTTACTAACT...TCCAG|GCC 0 1 22.986
125746714 GT-AG 0 0.0560587400979973 125 rna-NM_001302856.1 23121175 3 13411225 13411349 Nelumbo nucifera 4432 GAG|GTATATTCTA...TACCTTTTAATA/TACCTTTTAATA...TGCAG|ATA 0 1 27.169
125746715 GT-AG 0 1.000000099473604e-05 116 rna-NM_001302856.1 23121175 4 13411010 13411125 Nelumbo nucifera 4432 AAG|GTTATTCATT...TATGCCTAATTT/CTATGCCTAATT...TTAAG|GTA 0 1 32.283
125746716 GT-AG 0 1.000000099473604e-05 843 rna-NM_001302856.1 23121175 5 13410077 13410919 Nelumbo nucifera 4432 CAA|GTAAGCAAGT...AATTTTTTGGCT/CTGCTTTTTATG...TTCAG|GCA 0 1 36.932
125746717 GT-AG 0 1.000000099473604e-05 89 rna-NM_001302856.1 23121175 6 13409924 13410012 Nelumbo nucifera 4432 ATG|GTAGGGACTC...ACTTCATTAAAG/CTAAAACTCATT...CACAG|GTG 1 1 40.238
125746718 GT-AG 0 1.000000099473604e-05 126 rna-NM_001302856.1 23121175 7 13409697 13409822 Nelumbo nucifera 4432 AAG|GTAATGTTTC...TGAGTTTTGATA/AAGTTTCTCAAA...GCCAG|GTT 0 1 45.455
125746719 GT-AG 0 1.000000099473604e-05 103 rna-NM_001302856.1 23121175 8 13409484 13409586 Nelumbo nucifera 4432 TGG|GTAGGATGTC...TATATCTTATTC/ATCTTATTCATT...TGTAG|TTA 2 1 51.136
125746720 GT-AG 0 1.000000099473604e-05 88 rna-NM_001302856.1 23121175 9 13409152 13409239 Nelumbo nucifera 4432 ACT|GTAAGGAACT...AGTTTCTTGTTA/CAAGGACTGATA...TCCAG|GTT 0 1 63.74
125746721 GT-AG 0 0.0002052174444337 115 rna-NM_001302856.1 23121175 10 13408860 13408974 Nelumbo nucifera 4432 CTC|GTAAGCATCA...ACTTCCTTCTTT/TTGGGTTTGACT...TTCAG|GGG 0 1 72.882
125746722 GT-AG 0 0.0002705446565397 140 rna-NM_001302856.1 23121175 11 13408528 13408667 Nelumbo nucifera 4432 ACG|GTACACACAC...AAAGCTGTGATT/AGTTAACTGACA...TTCAG|ATT 0 1 82.8
125746723 GT-AG 0 0.0070730281424961 226 rna-NM_001302856.1 23121175 12 13408215 13408440 Nelumbo nucifera 4432 GAT|GTATGCAATG...TCGGTCATGAAA/TTCAAACTGATG...TTCAG|TGT 0 1 87.293
125746724 GT-AG 0 1.000000099473604e-05 186 rna-NM_001302856.1 23121175 13 13407900 13408085 Nelumbo nucifera 4432 AAG|GTGAGTGTGA...TTTTCCTTTCCG/AAGACTTTAAGT...AACAG|GGG 0 1 93.957
125748265 GT-AG 0 1.000000099473604e-05 1204 rna-NM_001302856.1 23121175 1 13411951 13413154 Nelumbo nucifera 4432 GTG|GTAAGTTGGT...ATTCCTGTGATG/CCGATAATAATT...TTCAG|AAC   0 4.545

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