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)

14 rows where transcript_id = 32765353

✎ 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
183238078 GT-AG 0 1.000000099473604e-05 770 rna-XM_022823667.1 32765353 1 11200838 11201607 Setaria italica 4555 TTG|GTAGTGATAG...CTGCTTTTACCT/TCTGGTCTGACC...TTCAG|CTT 1 1 2.297
183238079 GT-AG 0 1.000000099473604e-05 760 rna-XM_022823667.1 32765353 2 11202654 11203413 Setaria italica 4555 ATG|GTAAGTTACA...AAACTTTCAACA/ATGGTGTTGAAT...TGCAG|ATT 0 1 33.908
183238080 GT-AG 0 0.0005395365252878 101 rna-XM_022823667.1 32765353 3 11203546 11203646 Setaria italica 4555 GAT|GTATGAAACT...CATTTTTTAATT/CATTTTTTAATT...ACTAG|GTG 0 1 37.897
183238081 GT-AG 0 1.000000099473604e-05 97 rna-XM_022823667.1 32765353 4 11203872 11203968 Setaria italica 4555 CAA|GTAAGGTCTA...AATACCATGATA/CTATTGCTGACA...TGAAG|GCG 0 1 44.696
183238082 GT-AG 0 1.000000099473604e-05 87 rna-XM_022823667.1 32765353 5 11204095 11204181 Setaria italica 4555 CAG|GTTATTACCT...TAAGTCTGAATA/AGGTTGCTTATA...TGCAG|GGT 0 1 48.504
183238083 GT-AG 0 6.7991401818221e-05 564 rna-XM_022823667.1 32765353 6 11204245 11204808 Setaria italica 4555 CAG|GTATAAATTT...GAGTTTTTATGT/ACTAAGCTGATT...AACAG|GAA 0 1 50.408
183238084 GT-AG 0 1.000000099473604e-05 521 rna-XM_022823667.1 32765353 7 11204892 11205412 Setaria italica 4555 GAT|GTGAGTCCAT...CTCTGTTTGATT/GTTTGATTCATC...AACAG|GCA 2 1 52.916
183238085 GT-AG 0 5.866058881337082e-05 176 rna-XM_022823667.1 32765353 8 11205645 11205820 Setaria italica 4555 AAG|GTAACTGGAG...TAGTTTTTACTC/TTAGTTTTTACT...TTCAG|AAT 0 1 59.927
183238086 GT-AG 0 1.000000099473604e-05 87 rna-XM_022823667.1 32765353 9 11206132 11206218 Setaria italica 4555 CAG|GTAATGTCTC...TCAAACTTATCC/AATTTTGTCAAT...CGCAG|GAT 2 1 69.326
183238087 GT-AG 0 1.000000099473604e-05 97 rna-XM_022823667.1 32765353 10 11206298 11206394 Setaria italica 4555 TTG|GTAGGGGGTT...TTTTTTTTACTG/ATTTTTTTTACT...CTCAG|GAA 0 1 71.714
183238088 GT-AG 0 0.0005019310775885 128 rna-XM_022823667.1 32765353 11 11206462 11206589 Setaria italica 4555 CTG|GTATGATAAT...CATGTTTTAATT/CATGTTTTAATT...GCCAG|ACA 1 1 73.738
183238089 GT-AG 0 1.000000099473604e-05 135 rna-XM_022823667.1 32765353 12 11206868 11207002 Setaria italica 4555 CAG|GTGATTAGTG...CCTCTCTTGACA/TATGTATTTATG...TTCAG|AAG 0 1 82.14
183238090 GT-AG 0 1.000000099473604e-05 462 rna-XM_022823667.1 32765353 13 11207191 11207652 Setaria italica 4555 CTG|GTAAGTGGTT...GAAATTTTGACA/GGTAATTTGATT...ATCAG|GTG 2 1 87.821
183238091 GT-AG 0 1.000000099473604e-05 102 rna-XM_022823667.1 32765353 14 11207810 11207911 Setaria italica 4555 AAG|GTTATATCCA...AATTTCTTCTAT/TCAGATTTCATA...GACAG|CTA 0 1 92.566

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