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

✎ 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
79163891 GT-AG 0 1.000000099473604e-05 110 rna-gnl|WGS:WAAD|FREMAG_R10150_mrna 14742265 1 184202 184311 Fregata magnificens 37042 TAC|GTGAGTGCTG...TGCCCCTCACCT/CTGCCCCTCACC...TGCAG|ATT 0 1 7.216
79163892 GT-AG 0 1.000000099473604e-05 108 rna-gnl|WGS:WAAD|FREMAG_R10150_mrna 14742265 2 183883 183990 Fregata magnificens 37042 ACA|GTGAGTGATG...TCCCTCCTAATA/TCCCTCCTAATA...TCCAG|AGG 1 1 19.301
79163893 GT-AG 0 1.000000099473604e-05 104 rna-gnl|WGS:WAAD|FREMAG_R10150_mrna 14742265 3 183708 183811 Fregata magnificens 37042 CAG|GTGAGGAGAG...CACCCCATGCTC/CCCATGCTCAAG...CGCAG|ATT 0 1 23.368
79163894 GT-AG 0 1.000000099473604e-05 200 rna-gnl|WGS:WAAD|FREMAG_R10150_mrna 14742265 4 183420 183619 Fregata magnificens 37042 AGA|GTGAGTTGGA...CCTCCCATGGCC/TCGCCTCCCATG...TGCAG|TGG 1 1 28.408
79163895 GT-AG 0 1.000000099473604e-05 80 rna-gnl|WGS:WAAD|FREMAG_R10150_mrna 14742265 5 183160 183239 Fregata magnificens 37042 TCT|GTGAGTCAGG...CCCTCCTCGCTC/CGGGGCCCCACA...CCCAG|ACC 1 1 38.717
79163896 GT-AG 0 1.000000099473604e-05 163 rna-gnl|WGS:WAAD|FREMAG_R10150_mrna 14742265 6 182869 183031 Fregata magnificens 37042 GAG|GTGAGGTCGG...TCTGCTTTCTCC/TTTCTCCCCACT...TGCAG|CTG 0 1 46.048
79163897 GT-AG 0 1.000000099473604e-05 88 rna-gnl|WGS:WAAD|FREMAG_R10150_mrna 14742265 7 182618 182705 Fregata magnificens 37042 ACT|GTAAGGCGGG...GTCTCCATGCCT/CTCCTGCTCACC...CCTAG|ACA 1 1 55.384
79163898 GT-AG 0 1.000000099473604e-05 312 rna-gnl|WGS:WAAD|FREMAG_R10150_mrna 14742265 8 182184 182495 Fregata magnificens 37042 AAG|GTTAGCAGGC...GTATCCCTTCCC/TCGGGGCTCATT...AACAG|GGC 0 1 62.371
79163899 GT-AG 0 1.000000099473604e-05 119 rna-gnl|WGS:WAAD|FREMAG_R10150_mrna 14742265 9 181926 182044 Fregata magnificens 37042 AGG|GTAAGAACTG...GGTGCCTGATGT/AGGTGCCTGATG...CACAG|GGA 1 1 70.332
79163900 GT-AG 0 1.000000099473604e-05 98 rna-gnl|WGS:WAAD|FREMAG_R10150_mrna 14742265 10 181706 181803 Fregata magnificens 37042 ACG|GTGAGAGCTG...GAATCCTTTGCT/TGGGCACTGAAT...CGCAG|GCT 0 1 77.32
79163901 GT-AG 0 1.000000099473604e-05 731 rna-gnl|WGS:WAAD|FREMAG_R10150_mrna 14742265 11 180839 181569 Fregata magnificens 37042 TCG|GTGAGTCTCG...CAGGCATTAGCT/TCCTCTCCCATT...TTTAG|ATC 1 1 85.109
79163902 GT-AG 0 3.9205553675438974e-05 446 rna-gnl|WGS:WAAD|FREMAG_R10150_mrna 14742265 12 180251 180696 Fregata magnificens 37042 CAT|GTAAGCACTG...CCCTCTTTGGTA/AAAATTGTCACC...CCTAG|CAC 2 1 93.242

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