Skip to content

Commit 0870065

Browse files
committed
First Commit
0 parents  commit 0870065

File tree

10 files changed

+427
-0
lines changed

10 files changed

+427
-0
lines changed

.Rbuildignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
^renv$
2+
^renv\.lock$
3+
^.*\.Rproj$
4+
^\.Rproj\.user$

.Rprofile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
if (file.exists("~/.Rprofile")) {
2+
source("~/.Rprofile")
3+
}
4+
5+
source("renv/activate.R")

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
.Rproj.user
2+
.Rhistory
3+
.RData
4+
.Ruserdata

DESCRIPTION

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
Package: KINNET
2+
Type: Package
3+
Title: Kinase INteraction NETwork Generation
4+
Version: 0.1.0.9000
5+
Authors@R: c(
6+
person(given = c("Ali", "Sajid"),
7+
family = "Imami",
8+
role = c("aut", "cre"),
9+
email = "Ali.Sajid.Imami@gmail.com",
10+
comment = c(ORCID = "0000-0003-3684-3539")))
11+
Description: This package provides the functionality to process PamGene's PamChip
12+
Data Output and generate kinase interaction networks from that.
13+
License: GPL (>= 3)
14+
Encoding: UTF-8
15+
LazyData: true

KINNET.Rproj

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
Version: 1.0
2+
3+
RestoreWorkspace: Default
4+
SaveWorkspace: Default
5+
AlwaysSaveHistory: Default
6+
7+
EnableCodeIndexing: Yes
8+
UseSpacesForTab: Yes
9+
NumSpacesForTab: 2
10+
Encoding: UTF-8
11+
12+
RnwWeave: Sweave
13+
LaTeX: pdfLaTeX
14+
15+
AutoAppendNewline: Yes
16+
StripTrailingWhitespace: Yes
17+
18+
BuildType: Package
19+
PackageUseDevtools: Yes
20+
PackageInstallArgs: --no-multiarch --with-keep.source

NAMESPACE

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
exportPattern("^[[:alpha:]]+")

renv.lock

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"R": {
3+
"Version": "4.0.3",
4+
"Repositories": [
5+
{
6+
"Name": "CRAN",
7+
"URL": "https://cran.rstudio.com"
8+
}
9+
]
10+
},
11+
"Packages": {
12+
"renv": {
13+
"Package": "renv",
14+
"Version": "0.12.0",
15+
"Source": "Repository",
16+
"Repository": "CRAN",
17+
"Hash": "7340c71f46a0fd16506cfa804e224e44"
18+
}
19+
}
20+
}

renv/.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
library/
2+
python/
3+
staging/

0 commit comments

Comments
 (0)