Needleman–Wunsch algorithm

Figure 1: Needleman-Wunsch pairwise sequence alignment
ClassSequence alignment
Worst-case performance
Worst-case space complexity

The Needleman–Wunsch algorithm is an algorithm used in bioinformatics to align protein or nucleotide sequences. It was one of the first applications of dynamic programming to compare biological sequences. The algorithm was developed by Saul B. Needleman and Christian D. Wunsch and published in 1970.[1] The algorithm essentially divides a large problem (e.g. the full sequence) into a series of smaller problems, and it uses the solutions to the smaller problems to find an optimal solution to the larger problem.[2] It is also sometimes referred to as the optimal matching algorithm and the global alignment technique. The Needleman–Wunsch algorithm is still widely used for optimal global alignment, particularly when the quality of the global alignment is of the utmost importance. The algorithm assigns a score to every possible alignment, and the purpose of the algorithm is to find all possible alignments having the highest score.

Introduction

This algorithm can be used for any two strings. This guide will use two small DNA sequences as examples as shown in Figure 1:

GCATGCG
GATTACA

Constructing the grid

First construct a grid such as one shown in Figure 1 above. Start the first string in the top of the third column and start the other string at the start of the third row. Fill out the rest of the column and row headers as in Figure 1. There should be no numbers in the grid yet.

G C A T G C G
 
G
A
T
T
A
C
A

Choosing a scoring system

Next, decide how to score each individual pair of letters. Using the example above, one possible alignment candidate might be:

12345678
GCATG-CG
G-ATTACA

The letters may match, mismatch, or be matched to a gap (a deletion or insertion (indel)):

  • Match: The two letters at the current index are the same.
  • Mismatch: The two letters at the current index are different.
  • Indel (Insertion or Deletion): The best alignment involves one letter aligning to a gap in the other string.

Each of these scenarios is assigned a score and the sum of the scores of all the pairings is the score of the whole alignment candidate. Different systems exist for assigning scores; some have been outlined in the Scoring systems section below. For now, the system used by Needleman and Wunsch[1] will be used:

  • Match: +1
  • Mismatch or Indel: −1

For the Example above, the score of the alignment would be 0:

GCATG-CG
G-ATTACA
+−++−−+− −> 1*4 + (−1)*4 = 0

Filling in the table

Start with a zero in the first row, first column (not including the cells containing nucleotides). Move through the cells row by row, calculating the score for each cell. The score is calculated by comparing the scores of the cells neighboring to the left, top or top-left (diagonal) of the cell and adding the appropriate score for match, mismatch or indel. Take the maximum of the candidate scores for each of the three possibilities:

  • The path from the top or left cell represents an indel pairing, so take the scores of the left and the top cell, and add the score for indel to each of them.
  • The diagonal path represents a match/mismatch, so take the score of the top-left diagonal cell and add the score for match if the corresponding bases (letters) in the row and column are matching or the score for mismatch if they do not.

The resulting score for the cell is the highest of the three candidate scores.

Given there is no 'top' or 'top-left' cells for the first row only the existing cell to the left can be used to calculate the score of each cell. Hence −1 is added for each shift to the right as this represents an indel from the previous score. This results in the first row being 0, −1, −2, −3, −4, −5, −6, −7. The same applies to the first column as only the existing score above each cell can be used. Thus the resulting table is:

G C A T G C G
0 −1 −2 −3 −4 −5 −6 −7
G −1
A −2
T −3
T −4
A −5
C −6
A −7

The first case with existing scores in all 3 directions is the intersection of our first letters (in this case G and G). The surrounding cells are below:

G
0 −1
G −1 X

This cell has three possible candidate sums:

  • The diagonal top-left neighbor has score 0. The pairing of G and G is a match, so add the score for match: 0+1 = 1
  • The top neighbor has score −1 and moving from there represents an indel, so add the score for indel: (−1) + (−1) = (−2)
  • The left neighbor also has score −1, represents an indel and also produces (−2).

The highest candidate is 1 and is entered into the cell:

G
0 −1
G −1 1

The cell which gave the highest candidate score must also be recorded. In the completed diagram in figure 1 above, this is represented as an arrow from the cell in row and column 2 to the cell in row and column 1.

In the next example, the diagonal step for both X and Y represents a mismatch:

G C
0 −1 −2
G −1 1 X
A −2 Y

X:

  • Top: (−2)+(−1) = (−3)
  • Left: (+1)+(−1) = (0)
  • Top-Left: (−1)+(−1) = (−2)

Y:

  • Top: (1)+(−1) = (0)
  • Left: (−2)+(−1) = (−3)
  • Top-Left: (−1)+(−1) = (−2)

For both X and Y, the highest score is zero:

G C
0 −1 −2
G −1 1 0
A −2 0

The highest candidate score may be reached by two of the neighboring cells:

T G
T 1 1
A 0 X
  • Top: (1)+(−1) = (0)
  • Top-Left: (1)+(−1) = (0)
  • Left: (0)+(−1) = (−1)

In this case, all directions reaching the highest candidate score must be noted as possible origin cells in the finished diagram in figure 1, e.g. in the cell in row and column 6.

Filling in the table in this manner gives the scores of all possible alignment candidates, the score in the cell on the bottom right represents the alignment score for the best alignment.

Tracing arrows back to origin

Mark a path from the cell on the bottom right back to the cell on the top left by following the direction of the arrows. From this path, the sequence is constructed by these rules:

  • A diagonal arrow represents a match or mismatch, so the letter of the column and the letter of the row of the origin cell will align.
  • A horizontal or vertical arrow represents an indel. Vertical arrows will align a gap ("-") to the letter of the row (the "side" sequence), horizontal arrows will align a gap to the letter of the column (the "top" sequence).
  • If there are multiple arrows to choose from, they represent a branching of the alignments. If two or more branches all belong to paths from the bottom right to the top left cell, they are equally viable alignments. In this case, note the paths as separate alignment candidates.

Following these rules, the steps for one possible alignment candidate in figure 1 are:

G → CG → GCG → -GCG → T-GCG → AT-GCG → CAT-GCG → GCAT-GCG
A → CA → ACA → TACA → TTACA → ATTACA → -ATTACA → G-ATTACA
             ↓
    (branch) → TGCG → -TGCG → ...
             → TACA → TTACA → ...

Scoring systems

Basic scoring schemes

The simplest scoring schemes simply give a value for each match, mismatch and indel. The step-by-step guide above uses match = 1, mismatch = −1, indel = −1. Thus the lower the alignment score the larger the edit distance, for this scoring system one wants a high score. Another scoring system might be:

  • Match = 0
  • Indel = -1
  • Mismatch = -1

For this system the alignment score will represent the edit distance between the two strings. Different scoring systems can be devised for different situations, for example if gaps are considered very bad for your alignment you may use a scoring system that penalises gaps heavily, such as:

  • Match = 1
  • Indel = -10
  • Mismatch = -1


Similarity matrix

More complicated scoring systems attribute values not only for the type of alteration, but also for the letters that are involved. For example, a match between A and A may be given 1, but a match between T and T may be given 4. Here (assuming the first scoring system) more importance is given to the Ts matching than the As, i.e. the Ts matching is assumed to be more significant to the alignment. This weighting based on letters also applies to mismatches.

In order to represent all the possible combinations of letters and their resulting scores a similarity matrix is used. The similarity matrix for the most basic system is represented as:

A G C T
A 1 −1 −1 −1
G −1 1 −1 −1
C −1 −1 1 −1
T −1 −1 −1 1

Each score represents a switch from one of the letters the cell matches to the other. Hence this represents all possible matches and mismatches (for an alphabet of ACGT). Note all the matches go along the diagonal, also not all the table needs to be filled, only this triangle because the scores are reciprocal.= (Score for A → C = Score for C → A). If implementing the T-T = 4 rule from above the following similarity matrix is produced:

A G C T
A 1 −1 −1 −1
G −1 1 −1 −1
C −1 −1 1 −1
T −1 −1 −1 4

Different scoring matrices have been statistically constructed which give weight to different actions appropriate to a particular scenario. Having weighted scoring matrices is particularly important in protein sequence alignment due to the varying frequency of the different amino acids. There are two broad families of scoring matrices, each with further alterations for specific scenarios:

Gap penalty

When aligning sequences there are often gaps (i.e. indels), sometimes large ones. Biologically, a large gap is more likely to occur as one large deletion as opposed to multiple single deletions. Hence two small indels should have a worse score than one large one. The simple and common way to do this is via a large gap-start score for a new indel and a smaller gap-extension score for every letter which extends the indel. For example, new-indel may cost -5 and extend-indel may cost -1. In this way an alignment such as:

GAAAAAAT
G--A-A-T

which has multiple equal alignments, some with multiple small alignments will now align as:

GAAAAAAT
GAA----T

or any alignment with a 4 long gap in preference over multiple small gaps.

Advanced presentation of algorithm

Scores for aligned characters are specified by a similarity matrix. Here, S(a, b) is the similarity of characters a and b. It uses a linear gap penalty, here called d.

For example, if the similarity matrix was

A G C T
A 10 −1 −3 −4
G −1 7 −5 −3
C −3 −5 9 0
T −4 −3 0 8

then the alignment:

AGACTAGTTAC
CGA---GACGT

with a gap penalty of −5, would have the following score:

S(A,C) + S(G,G) + S(A,A) + (3 × d) + S(G,G) + S(T,A) + S(T,C) + S(A,G) + S(C,T)
= −3 + 7 + 10 − (3 × 5) + 7 + (−4) + 0 + (−1) + 0 = 1

To find the alignment with the highest score, a two-dimensional array (or matrix) F is allocated. The entry in row i and column j is denoted here by . There is one row for each character in sequence A, and one column for each character in sequence B. Thus, if aligning sequences of sizes n and m, the amount of memory used is in . Hirschberg's algorithm only holds a subset of the array in memory and uses space, but is otherwise similar to Needleman-Wunsch (and still requires time).

As the algorithm progresses, the will be assigned to be the optimal score for the alignment of the first characters in A and the first characters in B. The principle of optimality is then applied as follows:

  • Basis:
  • Recursion, based on the principle of optimality:

The pseudo-code for the algorithm to compute the F matrix therefore looks like this:

d ← Gap penalty score
for i = 0 to length(A)
    F(i,0) ← d * i
for j = 0 to length(B)
    F(0,j) ← d * j
for i = 1 to length(A)
    for j = 1 to length(B)
    {
        Match ← F(i−1, j−1) + S(Ai, Bj)
        Delete ← F(i−1, j) + d
        Insert ← F(i, j−1) + d
        F(i,j) ← max(Match, Insert, Delete)
    }

Once the F matrix is computed, the entry gives the maximum score among all possible alignments. To compute an alignment that actually gives this score, you start from the bottom right cell, and compare the value with the three possible sources (Match, Insert, and Delete above) to see which it came from. If Match, then and are aligned, if Delete, then is aligned with a gap, and if Insert, then is aligned with a gap. (In general, more than one choice may have the same value, leading to alternative optimal alignments.)

AlignmentA ← ""
AlignmentB ← ""
i ← length(A)
j ← length(B)
while (i > 0 or j > 0)
{
    if (i > 0 and j > 0 and F(i, j) == F(i−1, j−1) + S(Ai, Bj))
    {
        AlignmentA ← Ai + AlignmentA
        AlignmentB ← Bj + AlignmentB
        i ← i − 1
        j ← j − 1
    }
    else if (i > 0 and F(i, j) == F(i−1, j) + d)
    {
        AlignmentA ← Ai + AlignmentA
        AlignmentB ← "−" + AlignmentB
        i ← i − 1
    }
    else
    {
        AlignmentA ← "−" + AlignmentA
        AlignmentB ← Bj + AlignmentB
        j ← j − 1
    }
}

Complexity

Computing the score for each cell in the table is an operation. Thus the time complexity of the algorithm for two sequences of length and is .[3] It has been shown that it is possible to improve the running time to using the Method of Four Russians.[3][4] Since the algorithm fills an table the space complexity is [3]

Historical notes and algorithm development

The original purpose of the algorithm described by Needleman and Wunsch was to find similarities in the amino acid sequences of two proteins.[1]

Needleman and Wunsch describe their algorithm explicitly for the case when the alignment is penalized solely by the matches and mismatches, and gaps have no penalty (d=0). The original publication from 1970 suggests the recursion .

The corresponding dynamic programming algorithm takes cubic time. The paper also points out that the recursion can accommodate arbitrary gap penalization formulas:

A penalty factor, a number subtracted for every gap made, may be assessed as a barrier to allowing the gap. The penalty factor could be a function of the size and/or direction of the gap. [page 444]

A better dynamic programming algorithm with quadratic running time for the same problem (no gap penalty) was introduced later[5] by David Sankoff in 1972. Similar quadratic-time algorithms were discovered independently by T. K. Vintsyuk[6] in 1968 for speech processing ("time warping"), and by Robert A. Wagner and Michael J. Fischer[7] in 1974 for string matching.

Needleman and Wunsch formulated their problem in terms of maximizing similarity. Another possibility is to minimize the edit distance between sequences, introduced by Vladimir Levenshtein. Peter H. Sellers showed[8] in 1974 that the two problems are equivalent.

The Needleman–Wunsch algorithm is still widely used for optimal global alignment, particularly when the quality of the global alignment is of the utmost importance. However, the algorithm is expensive with respect to time and space, proportional to the product of the length of two sequences and hence is not suitable for long sequences.

Recent development has focused on improving the time and space cost of the algorithm while maintaining quality. For example, in 2013, a Fast Optimal Global Sequence Alignment Algorithm (FOGSAA),[9] suggested alignment of nucleotide/protein sequences faster than other optimal global alignment methods, including the Needleman–Wunsch algorithm. The paper claims that when compared to the Needleman–Wunsch algorithm, FOGSAA achieves a time gain of 70–90% for highly similar nucleotide sequences (with > 80% similarity), and 54–70% for sequences having 30–80% similarity.

Applications outside bioinformatics

Computer stereo vision

Stereo matching is an essential step in the process of 3D reconstruction from a pair of stereo images. When images have been rectified, an analogy can be drawn between aligning nucleotide and protein sequences and matching pixels belonging to scan lines, since both tasks aim at establishing optimal correspondence between two strings of characters.

Although in many applications image rectification can be performed, e.g. by camera resectioning or calibration, it is sometimes impossible or impractical since the computational cost of accurate rectification models prohibit their usage in real-time applications. Moreover, none of these models is suitable when a camera lens displays unexpected distortions, such as those generated by raindrops, weatherproof covers or dust. By extending the Needleman–Wunsch algorithm, a line in the 'left' image can be associated to a curve in the 'right' image by finding the alignment with the highest score in a three-dimensional array (or matrix). Experiments demonstrated that such extension allows dense pixel matching between unrectified or distorted images.[10]

See also

References

  1. ^ a b c Needleman, Saul B. & Wunsch, Christian D. (1970). "A general method applicable to the search for similarities in the amino acid sequence of two proteins". Journal of Molecular Biology. 48 (3): 443–53. doi:10.1016/0022-2836(70)90057-4. PMID 5420325.
  2. ^ "bioinformatics". Retrieved 10 September 2014.
  3. ^ a b c Wing-Kin., Sung (2010). Algorithms in bioinformatics : a practical introduction. Boca Raton: Chapman & Hall/CRC Press. pp. 34–35. ISBN 9781420070330. OCLC 429634761.
  4. ^ Masek, William; Paterson, Michael (February 1980). "A faster algorithm computing string edit distances". Journal of Computer and System Sciences. 20: 18–31. doi:10.1016/0022-0000(80)90002-1.
  5. ^ Sankoff D (1972). "Matching sequences under deletion/insertion constraints". Proceedings of the National Academy of Sciences of the USA. 69 (1): 4–6. Bibcode:1972PNAS...69....4S. doi:10.1073/pnas.69.1.4. PMC 427531. PMID 4500555.
  6. ^ Vintsyuk TK (1968). "Speech discrimination by dynamic programming". Kibernetika. 4: 81–88. doi:10.1007/BF01074755. S2CID 123081024.
  7. ^ Wagner RA, Fischer MJ (1974). "The string-to-string correction problem". Journal of the ACM. 21 (1): 168–173. doi:10.1145/321796.321811. S2CID 13381535.
  8. ^ Sellers PH (1974). "On the theory and computation of evolutionary distances". SIAM Journal on Applied Mathematics. 26 (4): 787–793. doi:10.1137/0126070.
  9. ^ Chakraborty, Angana; Bandyopadhyay, Sanghamitra (29 April 2013). "FOGSAA: Fast Optimal Global Sequence Alignment Algorithm". Scientific Reports. 3: 1746. Bibcode:2013NatSR...3E1746C. doi:10.1038/srep01746. PMC 3638164. PMID 23624407.
  10. ^ Thevenon, J; Martinez-del-Rincon, J; Dieny, R; Nebel, J-C (2012). Dense pixel matching between unrectified and distorted images using dynamic programming. International Conference on Computer Vision Theory and Applications. Rome.

Read other articles:

Renang padaPekan Olahraga Nasional XIX Gaya bebas 50 m putra putri 100 m putra putri 200 m putra putri 400 m putra putri 800 m putra putri 1500 m putra putri Gaya punggung 50 m putra putri 100 m putra putri 200 m putra putri Gaya dada 50 m putra putri 100 m putra putri 200 m putra putri Gaya kupu-kupu 50 m putra putri 100 m putra putri 200 m putra putri Gaya ganti perorangan 200 m putra putri 400 m putra putri Gaya bebas estafet 4×100 m putra putri 4×200 m putra putri Gaya ganti estafet 4×100…

Investigative official in a civil or military organization This article is about the administrative office. For the Russian play by Nikolai Gogol, see The Government Inspector. For the Danny Kaye film, see The Inspector General (1949 film). The examples and perspective in this article may not represent a worldwide view of the subject. You may improve this article, discuss the issue on the talk page, or create a new article, as appropriate. (February 2022) (Learn how and when to remove this messa…

Questa voce sull'argomento Eulipotifli è solo un abbozzo. Contribuisci a migliorarla secondo le convenzioni di Wikipedia. Come leggere il tassoboxErinaceidi Erinaceus europaeus Classificazione scientifica Dominio Eukaryota Regno Animalia Phylum Chordata Classe Mammalia Infraclasse Eutheria Superordine Laurasiatheria Ordine Eulipotyphla Famiglia ErinaceidaeFischer, 1817 Sottofamiglie Erinaceinae Galericinae Gli erinaceidi[1] (Erinaceidae[2] Fischer, 1817) sono una famiglia d…

恩维尔·霍查Enver Hoxha霍查官方肖像照(摄于1980年代初)阿尔巴尼亚共产党中央委员会总书记任期1943年3月—1948年11月[1]前任無(首任)继任本人(劳动党中央委员会总书记)阿尔巴尼亚劳动党中央委员会总书记任期1948年11月—1954年7月[1]前任本人(共产党中央委员会总书记)继任本人(劳动党中央委员会第一书记)阿尔巴尼亚劳动党中央委员会第一书记任期1954年7…

Relation between chemical reaction rate and concentrations of the reactants In chemistry, the rate equation (also known as the rate law or empirical differential rate equation) is an empirical differential mathematical expression for the reaction rate of a given reaction in terms of concentrations of chemical species and constant parameters (normally rate coefficients and partial orders of reaction) only.[1] For many reactions, the initial rate is given by a power law such as v 0 = k [ A…

Dalam artikel ini, nama keluarganya adalah Lu. Lu Ching-yaoInformasi pribadiKebangsaanRepublik Tiongkok (Taiwan)Lahir7 Juni 1993 (umur 30)Kaohsiung, TaiwanTempat tinggalKaohsiung, TaiwanTinggi190 cm (6 ft 3 in)PeganganKananGanda putra & campuranPeringkat tertinggi10 (MD 16 November 2017)25 (XD 24 Agustus 2017)Peringkat saat ini13 (MD bersama Yang Po-han 21 Maret 2023) Rekam medali Bulu tangkis putra Mewakili  Tionghoa Taipei Asian Games 2018 Jakarta–Palembang …

This article needs additional citations for verification. Please help improve this article by adding citations to reliable sources. Unsourced material may be challenged and removed.Find sources: Guys Like Us – news · newspapers · books · scholar · JSTOR (September 2017) (Learn how and when to remove this message) American TV series or program Guys Like UsTitle cardGenreSitcomCreated byDan SchneiderWritten byTemi AkinyemiGeorge Doty IVJeffrey DuteilAndrew …

Questa voce sull'argomento calciatori cileni è solo un abbozzo. Contribuisci a migliorarla secondo le convenzioni di Wikipedia. Segui i suggerimenti del progetto di riferimento. Héctor Tapia Tapia in azione al Perugia nel 1999 Nazionalità  Cile Altezza 175 cm Peso 77 kg Calcio Ruolo Allenatore (ex attaccante) Squadra  Coquimbo Unido Termine carriera 2009 - giocatore CarrieraGiovanili -1994 Colo-ColoSquadre di club1 1994-1998 Colo-Colo82 (32)1999 Universidad Cató…

Bipolar magnetic semiconductors (BMSs) are a special class of magnetic semiconductors characterized by a unique electronic structure, where valence band maximum (VBM) and conduction band minimum (CBM) are fully spin polarized in the opposite spin direction.[1] BMSs can be described by three energy gaps, the spin-flip gap Δ2 in valence band (VB), band gap Δ1 and spin-flip gap Δ3 in conduction band (CB).[2] Up to now, bipolar magnetic semiconductors, together with half-metal and…

Armenian football club Football clubNoah ՆոաFull nameFootball Club NoahFounded2017; 7 years ago (2017)GroundArmavir City StadiumCapacity3,100 7,200OwnerVardges VardanyanSports DirectorArtur VoskanyanManagerCarlos InarejosLeagueArmenian Premier League2022–238th Home colours Away colours Current season Football Club Noah (Armenian: Ֆուտբոլային Ակումբ Նոա), commonly known as Noah is an Armenian professional football club based in Armavir. Founded in 2017 a…

Dutch professor and politician (born 1980) In this Dutch name, the surname is Van den Berg, not Berg. Caspar van den BergVan den Berg in 2022Member of the SenateIncumbentAssumed office 18 January 2022Preceded byEric van der Burg Personal detailsBornCaspar F. van den Berg (1980-05-19) 19 May 1980 (age 44)Angerlo, NetherlandsPolitical partyPeople's Party for Freedom and DemocracyChildren2Alma materUtrecht UniversityLondon School of EconomicsLeiden UniversityOccupationProfessorpolitician C…

Pour les articles homonymes, voir Auteuil. Cet article est une ébauche concernant Paris. Vous pouvez partager vos connaissances en l’améliorant (comment ?) selon les recommandations des projets correspondants. Quartier d'Auteuil Parc Sainte-Périne, à l'est du quartier. Administration Pays France Région Île-de-France Ville Paris Arrondissement municipal 16e Démographie Population 72 710 hab. (2016 [1]) Densité 23 997 hab./km2 Géographie Coordonnées 48° 5…

Crater on Mercury NabokovMESSENGER WAC mosaic of NabakovFeature typePeak-ring impact basinLocationDerain quadrangle, MercuryCoordinates14°34′S 55°46′E / 14.56°S 55.76°E / -14.56; 55.76Diameter166 km (103 mi)EponymVladimir Nabokov Enhanced color image of Nabokov Nabokov is a crater on Mercury. Its name was adopted by the International Astronomical Union (IAU) on April 24, 2012. Nabokov is named for the Russian and American author Vladimir Nabokov.[1&#…

British politician (born 1976) The subject of this article is standing for re-election to the House of Commons of the United Kingdom on 4 July, and has not been an incumbent MP since Parliament was dissolved on 30 May. Some parts of this article may be out of date during this period. Please feel free to improve this article (but note that updates without valid and reliable references will be removed) or discuss changes on the talk page. Stuart AndersonMPOfficial portrait, 2021Vice-Cham…

Ward in Kantō, JapanŌmiya-ku, Saitama 大宮区WardŌmiya WardŌmiya Ward Office SealLocation of Ōmiya-ku in SaitamaŌmiya-ku, Saitama Coordinates: 35°54′23.2″N 139°37′43.1″E / 35.906444°N 139.628639°E / 35.906444; 139.628639CountryJapanRegionKantōPrefectureSaitamaCitySaitamaArea • Total12.80 km2 (4.94 sq mi)Population (March 1, 2021) • Total119,298 • Density9,300/km2 (24,000/sq mi)Time zone…

1907 Kaiserpreis. The 1907 Kaiserpreis was a Grand Prix motor race held at Taunus on 13–14 June 1907. Heat 1 Pos No Driver Car Laps Time/Retired 1 8B Felice Nazzaro FIAT 2 2h56m17 2 3A Friedrich Opel Opel 2 3h01m00 3 16A Lucien Hautvast Pipe 2 3h02m56 4 19A P. Geller Adler 2 3h02m56 5 35A Alessandro Cagno Itala 2 3h07m26 6 37A Hugo Wilhelm Metallurgique 2 3h08m05 7 3B Carl Jörns Opel 2 3h10m08 8 26A R. Schmidt Eisenach 2 3h11m39 9 14A Vincenzo Florio Darracq 2 3h11m50 10 7A Victor Hémery Ben…

Circle of latitude often called the halfway point between the equator and the North Pole 45°class=notpageimage| 45th parallel north Map all coordinates using OpenStreetMap Download coordinates as: KML GPX (all coordinates) GPX (primary coordinates) GPX (secondary coordinates) The 45th parallel north is a circle of latitude that is 45 degrees north of Earth's equator. It crosses Europe, Asia, the Pacific Ocean, North America, and the Atlantic Ocean. The 45th parallel north is often called the ha…

LGBT rights in JamaicaJamaicaStatusIllegalPenaltyUp to 10 years imprisonment with hard labour;[1] (not enforced, legalization proposed)Gender identityNoneDiscrimination protectionsNoneFamily rightsRecognition of relationshipsNoneRestrictionsSame-sex marriage is constitutionally banned since 2011 (ban challenged in courts)AdoptionNo Lesbian, gay, bisexual, and transgender (LGBT) persons in Jamaica face legal and social issues not experienced by heterosexual and gender-conforming people. C…

Mū tōrere gameboard and starting setup Mū tōrere is a two-player board game played mainly by Māori people from New Zealand's North Island. Each player has four counters. The game has a simple premise but expert players are able to see up to 40 moves ahead. Like many other Māori board games, it is played on a papa tākoro (game board) and is tightly interwoven with stories and histories.[1] The Ngāti Hauā chief Wiremu Tamihana Te Waharoa reputedly offered a game to Governor George…

2004 studio album by The StreetsA Grand Don't Come for FreeStudio album by The StreetsReleased17 May 2004Recorded2003–2004 in Stockwell, LondonGenreAlternative hip hop, electronica, rap operaLength50:42LabelLocked On, 679ProducerMike SkinnerThe Streets chronology All Got Our Runnins(2003) A Grand Don't Come for Free(2004) The Hardest Way to Make an Easy Living(2006) Singles from A Grand Don't Come for Free Fit But You Know ItReleased: 26 April 2004 Dry Your EyesReleased: 19 July 2004 B…