Skip to content

Instantly share code, notes, and snippets.

@samuell
Created June 21, 2013 09:16
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save samuell/5829990 to your computer and use it in GitHub Desktop.
Save samuell/5829990 to your computer and use it in GitHub Desktop.
// --------------------------------------------------------------------
// Dummy processing DNA code (by taking base complement)
// Sequential version, with a string copy, to imitate
// algorithms that produces a new string
// Author: Samuel Lampa, samuel.lampa@gmail.com
// Date: 2013-06-21
// --------------------------------------------------------------------
package main
import (
"fmt"
"bufio"
"os"
"log"
)
func main() {
// Read file with DNA of Human Chromosome Y
file, err := os.Open("Homo_sapiens.GRCh37.67.dna_rm.chromosome.Y.fa")
if err != nil {
log.Fatal(err)
} else {
scan := bufio.NewScanner(file)
for scan.Scan() {
line := scan.Bytes()
// Set up a pipeline of sequential "dummy processing"
// (Taking the base complement back and forth a few
// times).
lineNew1 := complement(line)
lineNew2 := complement(lineNew1)
lineNew3 := complement(lineNew2)
lineNew4 := complement(lineNew3)
fmt.Println(string(lineNew4))
}
}
}
func complement(line []byte) []byte {
// Ugly and naive code to compute the DNA base complement
for pos := range line {
if line[pos] == 'A' {
line[pos] = 'T'
} else if line[pos] == 'T' {
line[pos] = 'A'
} else if line[pos] == 'C' {
line[pos] = 'G'
} else if line[pos] == 'G' {
line[pos] = 'C'
}
}
return append([]byte(nil), line...)
}
@samuell
Copy link
Author

samuell commented Jun 21, 2013

[samuel gotest]$ go build -o basecompl_copy basecompl_copy.go 
[samuel gotest]$ for i in $(seq 1 1 3); do echo "---"; time ./basecompl_copy > out.tmp; done;

---

real    0m6.868s
user    0m5.080s
sys 0m2.076s

---

real    0m7.001s
user    0m5.188s
sys 0m1.944s

---

real    0m7.080s
user    0m5.156s
sys 0m2.160s

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment