Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
abichat committed Jan 16, 2024
0 parents commit 0e632a7
Show file tree
Hide file tree
Showing 10 changed files with 731 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .Rbuildignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
^scimo\.Rproj$
^\.Rproj\.user$
^dev$
^LICENSE\.md$
^README\.Rmd$
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
.Rproj.user
.Rhistory
.Rdata
.httr-oauth
.DS_Store
.quarto
16 changes: 16 additions & 0 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
Package: scimo
Title: Extra Recipes Steps For Dealing With Omics Data
Version: 0.0.0.9000
Authors@R: c(
person("Antoine", "BICHAT", , "[email protected]", role = c("aut", "cre"),
comment = c(ORCID = "0000-0001-6599-7081"))
)
Description: Omics data (e.g. transcriptomics, proteomics, metagenomics...)
offer a detailed and multi-dimensional perspective on the molecular
components and interactions within complex biological (eco)systems.
Analyzing these data requires adapted procedures, which are implemented as
steps according to the 'recipes' package.
License: GPL (>= 3)
Encoding: UTF-8
Roxygen: list(markdown = TRUE)
RoxygenNote: 7.2.3
595 changes: 595 additions & 0 deletions LICENSE.md

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions NAMESPACE
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Generated by roxygen2: do not edit by hand

1 change: 1 addition & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# scimo 0.0.0.9000
44 changes: 44 additions & 0 deletions README.Rmd
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
---
output: github_document
---

<!-- README.md is generated from README.Rmd. Please edit that file -->

```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```

# scimo

```{r, echo = FALSE}
version <- as.vector(read.dcf('DESCRIPTION')[, 'Version'])
version <- gsub('-', '.', version)
```

<!-- badges: start -->
[![packageversion](https://img.shields.io/badge/version-`r version`-orange.svg)](commits/master)
<!-- badges: end -->

**scimo** provides extra recipes steps for dealing with omics data.

## Installation

You can install the development version of **scimo** like so:

``` r
# FILL THIS IN! HOW CAN PEOPLE INSTALL YOUR DEV PACKAGE?
```

## Example

This is a basic example which shows you how to solve a common problem:

```{r example}
library(scimo)
## basic example code
```
28 changes: 28 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@

<!-- README.md is generated from README.Rmd. Please edit that file -->

# scimo

<!-- badges: start -->

[![packageversion](https://img.shields.io/badge/version-0.0.0.9000-orange.svg)](commits/master)
<!-- badges: end -->

**scimo** provides extra recipes steps for dealing with omics data.

## Installation

You can install the development version of **scimo** like so:

``` r
# FILL THIS IN! HOW CAN PEOPLE INSTALL YOUR DEV PACKAGE?
```

## Example

This is a basic example which shows you how to solve a common problem:

``` r
library(scimo)
## basic example code
```
12 changes: 12 additions & 0 deletions dev/dev_history.R
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
library(devtools)
library(testthat)

# use_build_ignore("dev/")

# use_gpl3_license()

# use_news_md()

# use_readme_rmd()

use_git()
22 changes: 22 additions & 0 deletions scimo.Rproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
Version: 1.0

RestoreWorkspace: No
SaveWorkspace: No
AlwaysSaveHistory: Default

EnableCodeIndexing: Yes
UseSpacesForTab: Yes
NumSpacesForTab: 2
Encoding: UTF-8

RnwWeave: Sweave
LaTeX: pdfLaTeX

AutoAppendNewline: Yes
StripTrailingWhitespace: Yes
LineEndingConversion: Posix

BuildType: Package
PackageUseDevtools: Yes
PackageInstallArgs: --no-multiarch --with-keep.source
PackageRoxygenize: rd,collate,namespace

0 comments on commit 0e632a7

Please sign in to comment.