Skip to content

Commit

Permalink
Initial code import.
Browse files Browse the repository at this point in the history
  • Loading branch information
iansealy committed Jul 31, 2013
1 parent 3de7f4a commit 5c42e0f
Show file tree
Hide file tree
Showing 57 changed files with 18,863 additions and 0 deletions.
2 changes: 2 additions & 0 deletions MANIFEST.SKIP
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
bin/quince_chiphmmnew
tmp
25 changes: 25 additions & 0 deletions dist.ini
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name = DETCT
author = James Morris <james.morris2@sanger.ac.uk>
author = Ian Sealy <ian.sealy@sanger.ac.uk>
license = GPL_3
copyright_holder = Genome Research Ltd
copyright_year = 2013
version = 0.1.0

[@Basic]
[ExecDir]
dir = script
[FileFinder::ByName / ScriptNotR]
dir = script
skip = .*\.R$
[ModuleBuild]
[PodWeaver]
finder = :InstallModules
finder = ScriptNotR
[PodCoverageTests]
[PodSyntaxTests]
[Test::Perl::Critic]
[PerlTidy]
[AutoPrereqs]
[PkgVersion]
[Test::Compile]
21 changes: 21 additions & 0 deletions lib/DETCT.pm
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
## no critic (RequireUseStrict, RequireUseWarnings, RequireTidyCode)
package DETCT;
## use critic

# ABSTRACT: Transcript Counting API

## Author : is1
## Maintainer : is1
## Created : 2012-09-18
## Last commit by : $Author$
## Last modified : $Date$
## Revision : $Revision$
## Repository URL : $HeadURL$

use warnings;
use strict;
use autodie;
use Carp;
use Try::Tiny;

1;
Loading

0 comments on commit 5c42e0f

Please sign in to comment.