Skip to content

Commit

Permalink
registering native routine
Browse files Browse the repository at this point in the history
  • Loading branch information
shaileshtripathi committed Aug 22, 2016
1 parent 86104e6 commit 749eab8
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: samExploreR
Type: Package
Title: samExploreR package: high-performance read summarisation to count vectors with avaliability of sequencing depth reduction simulation
Version: 0.99.20
Version: 0.99.21
Depends: ggplot2,pBrackets,colorspace,R (>= 3.3.0)
Author: Alexey Stupnikov, Shailesh Tripathi and Frank Emmert-Streib with contributions from Wei Shi and Yang Liao
Maintainer: shailesh tripathi <shailesh.tripathy@gmail.com>
Expand Down
2 changes: 1 addition & 1 deletion NAMESPACE
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
useDynLib(samExploreR,.registration = TRUE, .fixes = "C_")
#useDynLib(samExploreR,.registration = TRUE, .fixes = "C_")
import(ggplot2)
exportPattern("^[^\\.]")
4 changes: 2 additions & 2 deletions src/init.c
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
#include "regrsub.h"

static const R_CMethodDef cMethods[] = {
{"R_readSummary_wrapper",(DL_FUNC)&"R_readSummary_wrapper",2},
{"R_readSummary_wrapper",(DL_FUNC) &R_readSummary_wrapper,2},
{NULL, NULL, 0}
};

void R_init_flagme(DllInfo *info){
void R_init_samExploreR(DllInfo *info){
R_registerRoutines(info, cMethods, NULL, NULL, NULL);
}

0 comments on commit 749eab8

Please sign in to comment.