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

✎ 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
8696905 GT-AG 0 7.98021290837516e-05 103 rna-XM_020234062.1 1565170 1 14511668 14511770 Ananas comosus 4615 GAA|GTAAGTTTGA...CGCTTCTCAATA/TCGCTTCTCAAT...TTCAG|GTA 2 1 3.61
8696906 GT-AG 0 1.000000099473604e-05 76 rna-XM_020234062.1 1565170 2 14511838 14511913 Ananas comosus 4615 GAG|GTCAGTGAAA...AATTTCTTATGG/CAATTTCTTATG...TGCAG|ATG 0 1 6.077
8696907 GT-AG 0 0.0009888873315332 80 rna-XM_020234062.1 1565170 3 14511980 14512059 Ananas comosus 4615 AAG|GTTTCATCTT...TTTTTGTTGAAA/TTTTTGTTGAAA...TGTAG|GGC 0 1 8.508
8696908 GT-AG 0 1.000000099473604e-05 94 rna-XM_020234062.1 1565170 4 14512107 14512200 Ananas comosus 4615 TAT|GTGAGTGTCC...TTTGCCTTACTA/TTTTGCCTTACT...AATAG|GGC 2 1 10.239
8696909 GT-AG 0 1.000000099473604e-05 88 rna-XM_020234062.1 1565170 5 14512247 14512334 Ananas comosus 4615 GAG|GTGGCACAAT...ATTTTATTAATT/ATTTTATTAATT...TTCAG|AAA 0 1 11.934
8696910 GT-AG 0 1.000000099473604e-05 85 rna-XM_020234062.1 1565170 6 14512416 14512500 Ananas comosus 4615 AAG|GTGCGTGCCA...CTATTTTTGATA/CTATTTTTGATA...TGTAG|TGC 0 1 14.917
8696911 GT-AG 0 1.000000099473604e-05 643 rna-XM_020234062.1 1565170 7 14512544 14513186 Ananas comosus 4615 TTG|GTTAGTTGCT...TTTGTTTTAATT/TTTGTTTTAATT...TGCAG|GAG 1 1 16.501
8696912 GT-AG 0 0.3702727012888809 703 rna-XM_020234062.1 1565170 8 14513237 14513939 Ananas comosus 4615 TCT|GTATGGTTTT...ATTACCTTGATT/ATTACCTTGATT...TTCAG|GTT 0 1 18.343
8696913 GT-AG 0 1.000000099473604e-05 86 rna-XM_020234062.1 1565170 9 14514022 14514107 Ananas comosus 4615 TTG|GTAGGATAGC...GTATGCTTAGAA/TAACTATTTATC...GACAG|GAT 1 1 21.363
8696914 GT-AG 0 0.0187194572695194 2239 rna-XM_020234062.1 1565170 10 14514158 14516396 Ananas comosus 4615 TTT|GTACGTCTCT...CATTCCTTGATT/CATTCCTTGATT...TTTAG|GAT 0 1 23.204
8696915 GT-AG 0 1.000000099473604e-05 357 rna-XM_020234062.1 1565170 11 14516471 14516827 Ananas comosus 4615 CTT|GTGAGTATTC...ATTATATTGACA/ATTATATTGACA...TACAG|GAA 2 1 25.93
8696916 GT-AG 0 9.805392233701973 88 rna-XM_020234062.1 1565170 12 14516880 14516967 Ananas comosus 4615 AAT|GTATGCTTCC...TGTTTCTTAAAT/ATGTTTCTTAAA...AACAG|GCA 0 1 27.845
8696917 GT-AG 0 1.000000099473604e-05 812 rna-XM_020234062.1 1565170 13 14517571 14518382 Ananas comosus 4615 CTG|GTATGGGCCG...AGTATCATAGCT/AAAAGTATCATA...TGCAG|TTA 0 1 50.055

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