Jump to content

Darwin (programming language)

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Nijibabulu (talk | contribs) at 14:58, 10 November 2017. The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

Darwin is a closed source[1] programming language developed by Gaston Gonnet and colleagues at ETH Zurich.[2] It is used to develop the OMA orthology inference software[3], which was also initially developed by Gonnet.[4] The language backend consists of the kernel, responsible for performing simple mathematical calculations, for transporting and storing data and for interpreting the user's commands, and the library, a set of programs which can perform more complicated calculations.[5] The target audience for the language is the biosciences, so the library consisted of routines such as those to compute pairwise alignments, phylogenetic trees, multiple sequence alignments, and to make secondary structure predictions.

Example Code

One would write the Hello World program as:

printf('Hello, world!\n');

The following procedure calculates the factorial of a number:[5]

factorial := proc ( n )
  if (n=0) then
    return(1);
  else
    return(n * factorial(n-1));
  fi;
end:
  1. ^ "Darwin v2.0: an interpreted computer language for the biosciences" (PDF). Retrieved 2017-11-10.
  2. ^ "Personal page of Gaston Gonnet". Retrieved 2017-11-10.
  3. ^ "OMA Standalone". Retrieved 2017-11-10.
  4. ^ "OMA: web-based database interface for orthology prediction". Retrieved 2017-11-10.
  5. ^ a b "The Darwin Manual". Retrieved 2017-11-10.