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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: dinucleotide_pair, score, phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
68846997 GT-AG 0 1.000000099473604e-05 6598 rna-XM_009648171.1 12917208 2 1296337 1302934 Egretta garzetta 188379 AAG|GTGAGAGCCC...GACTTCTTTTCT/ATGGATCTAATT...TTCAG|AGT 0 1 7.306
68846998 GT-AG 0 1.000000099473604e-05 13287 rna-XM_009648171.1 12917208 3 1282919 1296205 Egretta garzetta 188379 AGA|GTAAGTATAC...ACTTTTTGGATC/TTAAAGTTGATA...TTCAG|TGT 2 1 17.275
68846999 GT-AG 0 1.000000099473604e-05 60150 rna-XM_009648171.1 12917208 4 1222617 1282766 Egretta garzetta 188379 ATG|GTAAGAGTTA...TGTTCTCTAGTA/ACATACCTCATT...TGCAG|AGG 1 1 28.843
68847000 GT-AG 0 8.856953685705852e-05 5470 rna-XM_009648171.1 12917208 5 1217043 1222512 Egretta garzetta 188379 TGG|GTAAGTTGCA...TCTTTCTTATTT/TTCTTTCTTATT...TTCAG|ATT 0 1 36.758
68847001 GT-AG 0 1.000000099473604e-05 13936 rna-XM_009648171.1 12917208 6 1203011 1216946 Egretta garzetta 188379 GAG|GTAAACCAGG...TTCATTTTACAT/TTCAAATTCATT...TTAAG|GTT 0 1 44.064
68847002 GT-AG 0 2.7619339238928467e-05 1564 rna-XM_009648171.1 12917208 7 1201380 1202943 Egretta garzetta 188379 ATG|GTAAGCTAAG...CTGGTCTTATAA/ACTGGTCTTATA...TATAG|GTA 1 1 49.163
68847003 GT-AG 0 1.000000099473604e-05 109 rna-XM_009648171.1 12917208 8 1201205 1201313 Egretta garzetta 188379 TTG|GTAAGTAAAA...TTTTTCTTCTTC/TTGGATTTGATT...GTCAG|GAA 1 1 54.186
68847004 GT-AG 0 1.000000099473604e-05 1139 rna-XM_009648171.1 12917208 9 1199986 1201124 Egretta garzetta 188379 CAG|GTGCTACAGT...TTTATTTTACTA/TTTTATTTTACT...TTCAG|TTA 0 1 60.274
68847005 GT-AG 0 1.000000099473604e-05 495 rna-XM_009648171.1 12917208 10 1199356 1199850 Egretta garzetta 188379 GTG|GTAAATAGAA...TCATTTTTGAAG/TCATTTTTGAAG...TACAG|ATC 0 1 70.548
68847006 GT-AG 0 2.758752556965216e-05 7997 rna-XM_009648171.1 12917208 11 1191242 1199238 Egretta garzetta 188379 GCT|GTAAGTAACT...TTTTTTTTGCCT/ATTACTCTAAAT...AACAG|GTG 0 1 79.452
68847007 GC-AG 0 1.000000099473604e-05 916 rna-XM_009648171.1 12917208 12 1190243 1191158 Egretta garzetta 188379 CAG|GCAAGATACA...TTAACCTAAATT/TGGATATTAACC...TCTAG|GCC 2 1 85.769
68847008 GT-AG 0 1.000000099473604e-05 81059 rna-XM_009648171.1 12917208 13 1109078 1190136 Egretta garzetta 188379 GAG|GTAAGTTATT...CTCATTTTAAAT/ATGTTTCTCATT...TGTAG|GTC 0 1 93.836

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