Commit 9ed75949 authored by Andreas Tille's avatar Andreas Tille
Browse files

New upstream version 0.1.12

parent 58f34768
Loading
Loading
Loading
Loading

.gitignore

0 → 100644
+2 −0
Original line number Diff line number Diff line
src/*.o
dwgsim*

.travis.yml

0 → 100644
+6 −0
Original line number Diff line number Diff line
sudo: required
language: c
compiler:
- clang
- gcc
script: make && make test
+4 −0
Original line number Diff line number Diff line
@@ -71,3 +71,7 @@ dist:clean
	tar -vcf dwgsim-${PACKAGE_VERSION}.tar dwgsim-${PACKAGE_VERSION}; \
	gzip -9 dwgsim-${PACKAGE_VERSION}.tar; \
	rm -rv dwgsim-${PACKAGE_VERSION};

test:
	if [ -d tmp ]; then rm -r tmp; fi
	/bin/bash testdata/test.sh
+15 −0
Original line number Diff line number Diff line
[![Build Status](https://travis-ci.org/nh13/DWGSIM.svg?branch=master)](https://travis-ci.org/nh13/DWGSIM)

Welcome to DWGSIM.

Please see the file LICENSE for details.
Please see the file INSTALL for installation instructions;

This software package has limited support since it is in active development.
This software package has limited support since it is not longer in active development.

Please use the following command when cloning this repository:

```git clone --recursive``` 

Please see the following page for more details:
https://sourceforge.net/apps/mediawiki/dnaa/index.php?title=Whole_Genome_Simulation
https://github.com/nh13/DWGSIM/wiki
+1 −1
Original line number Diff line number Diff line
#!/bin/perl
#!/usr/bin/env perl

use strict;
use warnings;
Loading