Skip to content

Commit

Permalink
Initial commit.
Browse files Browse the repository at this point in the history
  • Loading branch information
sbotond committed Aug 30, 2011
0 parents commit 3606119
Show file tree
Hide file tree
Showing 55 changed files with 1,171,689 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
.Rhistory
rlsim_report.tab*
_go_.6
rlsim
prof.out
TODO
ACK
674 changes: 674 additions & 0 deletions COPYING

Large diffs are not rendered by default.

28 changes: 28 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@

include $(GOROOT)/src/Make.inc

GC:=$(GC) -I ./src/fasta/_obj
LD:=$(LD) -L ./src/fasta/_obj

TARG=rlsim
GOFILES=\
src/main.go\
src/args.go\
src/frag.go\
src/fragmentor.go\
src/nnthermo.go\
src/pool.go\
src/report.go\
src/sampler.go\
src/target.go\
src/transcript.go\
src/utils.go\
src/input.go\
src/thermocycler.go\
src/random.go\
src/logging.go\
src/fragstats.go\
src/version.go\

include $(GOROOT)/src/Make.cmd

1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
An RNA-Seq library preparation simulator.
Empty file added doc/.gitignore
Empty file.
7 changes: 7 additions & 0 deletions src/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
.Rhistory
rlsim_report.tab*
_go_.6
rlsim
prof.out
TODO
ACK
51 changes: 51 additions & 0 deletions src/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
.PHONY: ct com push fetch gt fmt

ct:
git log --graph
com: fmt
git commit -a
push:
git push --all
fetch:
git fetch --all
gt:
gitk --all
t: rlsim
./rlsim -n 2000 ../test/basic/test_transcripts.fas > /dev/null
st: rlsim
./rlsim -n 200 ../test/basic/test_transcripts.fas
bt: rlsim
./rlsim -n 30000000 -t 4 -prof prof.out ../test/big_test/test_transcripts_full.fas > /dev/null
lt:
./sel ../test/basic/raw_transcripts.fas
prof:
gopprof ./rlsim prof.out


include $(GOROOT)/src/Make.inc

GC:=$(GC) -I ./fasta/_obj
LD:=$(LD) -L ./fasta/_obj

TARG=rlsim
GOFILES=\
main.go\
args.go\
frag.go\
fragmentor.go\
nnthermo.go\
pool.go\
report.go\
sampler.go\
target.go\
transcript.go\
utils.go\
input.go\
thermocycler.go\
random.go\
logging.go\
fragstats.go\
version.go\

include $(GOROOT)/src/Make.cmd

Loading

0 comments on commit 3606119

Please sign in to comment.