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)

11 rows where transcript_id = 23361080

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: score, phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
127150540 GT-AG 0 1.000000099473604e-05 61262 rna-XM_021692673.2 23361080 1 63271653 63332914 Neomonachus schauinslandi 29088 ATG|GTAAAGTGCC...AATACTTTATTG/TTATATCTAATA...CATAG|TTC 1 1 2.3
127150541 GT-AG 0 1.000000099473604e-05 2357 rna-XM_021692673.2 23361080 2 63333018 63335374 Neomonachus schauinslandi 29088 AAG|GTAAGCTGAA...ATGTCTCTGTCT/GGGATTGTTATG...TTCAG|GCA 2 1 4.67
127150542 GT-AG 0 1.000000099473604e-05 9794 rna-XM_021692673.2 23361080 3 63335520 63345313 Neomonachus schauinslandi 29088 ACG|GTGAGTGTTT...GGCTGCTTCATG/CAAGCACTCACT...CACAG|GAG 0 1 8.006
127150543 GT-AG 0 1.000000099473604e-05 1180 rna-XM_021692673.2 23361080 4 63345397 63346576 Neomonachus schauinslandi 29088 TAG|GTAAGAATCC...GTTTCTTTGTTA/TCTTTGTTAAAA...TACAG|GAC 2 1 9.915
127150544 GT-AG 0 0.0005477955117414 649 rna-XM_021692673.2 23361080 5 63346685 63347333 Neomonachus schauinslandi 29088 CAG|GTAACCACCG...GTTTCATTCATG/CTGTGTTTCATT...TTTAG|ATC 2 1 12.399
127150545 GT-AG 0 1.000000099473604e-05 5917 rna-XM_021692673.2 23361080 6 63347477 63353393 Neomonachus schauinslandi 29088 ATG|GTAATGGCTG...CCTTCCATGACT/CCATGACTGAGC...TATAG|AAA 1 1 15.689
127150546 GT-AG 0 4.172248273468853e-05 2073 rna-XM_021692673.2 23361080 7 63353593 63355665 Neomonachus schauinslandi 29088 CAA|GTAAGCAGCG...AACCCTTTATTA/ACCAAACTAACC...TTTAG|AAG 2 1 20.267
127150547 GT-AG 0 1.000000099473604e-05 4032 rna-XM_021692673.2 23361080 8 63355791 63359822 Neomonachus schauinslandi 29088 CAG|GTAAGAATTA...TTCCTCTCAATA/TATGCATTCATC...TTTAG|TGG 1 1 23.142
127150548 GT-AG 0 1.000000099473604e-05 1287 rna-XM_021692673.2 23361080 9 63359886 63361172 Neomonachus schauinslandi 29088 AAG|GTGAGCTCTC...GTTTGCTTTTTC/AGGCTGCTGACC...ACTAG|GGA 1 1 24.592
127150549 GT-AG 0 1.000000099473604e-05 2855 rna-XM_021692673.2 23361080 10 63361749 63364603 Neomonachus schauinslandi 29088 CAG|GTAAAGCAGG...ACGTCTTCAATG/CTAACTCTCATC...TGCAG|CTT 1 1 37.842
127150550 GT-AG 0 1.000000099473604e-05 2476 rna-XM_021692673.2 23361080 11 63364879 63367354 Neomonachus schauinslandi 29088 ATG|GTAAGATGGA...GAGTCCTTGGCT/TTGGCTCTAAAA...TTCAG|GAT 0 1 44.168

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