Skip to content

Commit

Permalink
Update documentation for version
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelgruenstaeudl committed May 20, 2024
1 parent a6f59dd commit 3c26875
Show file tree
Hide file tree
Showing 17 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
CHANGELOG
---------

#### Version 1.0.11 (2024.05.16)
#### Version 1.0.11 (2024.05.20)
* Minor fixes to tabular statistics file creation
* A coverage of 0 for a window is always labeled as low coverage

Expand Down
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: PACVr
Version: 1.0.11
Date: 2024-05-16
Date: 2024-05-20
Title: Plastome Assembly Coverage Visualization
Authors@R: c(person("Gregory", "Smith", role=c("ctb")),
person("Nils", "Jenke", role=c("ctb")),
Expand Down
2 changes: 1 addition & 1 deletion R/AnalysisSpecs.R
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env RScript
#contributors=c("Gregory Smith", "Nils Jenke", "Michael Gruenstaeudl")
#email="m_gruenstaeudl@fhsu.edu"
#version="2024.05.16.1704"
#version="2024.05.20.1821"

AnalysisSpecs <- R6Class("AnalysisSpecs",
public = list(
Expand Down
2 changes: 1 addition & 1 deletion R/GBKData.R
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env RScript
#contributors=c("Gregory Smith", "Nils Jenke", "Michael Gruenstaeudl")
#email="m_gruenstaeudl@fhsu.edu"
#version="2024.05.16.1704"
#version="2024.05.20.1821"

GBKData <- R6Class("GBKData",
public = list(
Expand Down
2 changes: 1 addition & 1 deletion R/IROps.R
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env RScript
#contributors=c("Gregory Smith", "Nils Jenke", "Michael Gruenstaeudl")
#email="m_gruenstaeudl@fhsu.edu"
#version="2024.05.16.1704"
#version="2024.05.20.1821"

checkIREquality <- function(gbkData,
analysisSpecs) {
Expand Down
2 changes: 1 addition & 1 deletion R/OutputSpecs.R
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env RScript
#contributors=c("Gregory Smith", "Nils Jenke", "Michael Gruenstaeudl")
#email="m_gruenstaeudl@fhsu.edu"
#version="2024.05.16.1704"
#version="2024.05.20.1821"

OutputSpecs <- R6Class("OutputSpecs",
public = list(
Expand Down
2 changes: 1 addition & 1 deletion R/PACVr.R
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env RScript
#contributors=c("Gregory Smith", "Nils Jenke", "Michael Gruenstaeudl")
#email="m_gruenstaeudl@fhsu.edu"
#version="2024.05.16.1704"
#version="2024.05.20.1821"

PACVr.read.gb <- function(gbkFile) {
gbkRaw <- getGbkRaw(gbkFile)
Expand Down
2 changes: 1 addition & 1 deletion R/RCircosOps.R
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env RScript
#contributors=c("Gregory Smith", "Nils Jenke", "Michael Gruenstaeudl")
#email="m_gruenstaeudl@fhsu.edu"
#version="2024.05.16.1704"
#version="2024.05.20.1821"


# The following R functions were taken from the R package RCircos and then modified.
Expand Down
2 changes: 1 addition & 1 deletion R/compileStats.R
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env RScript
#contributors=c("Gregory Smith", "Nils Jenke", "Michael Gruenstaeudl")
#email="m_gruenstaeudl@fhsu.edu"
#version="2024.05.16.1704"
#version="2024.05.20.1821"

PACVr.compileCovStats <- function(gbkData,
coverageRaw,
Expand Down
2 changes: 1 addition & 1 deletion R/coverageCalcOps.R
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env RScript
#contributors=c("Gregory Smith", "Nils Jenke", "Michael Gruenstaeudl")
#email="m_gruenstaeudl@fhsu.edu"
#version="2024.05.16.1704"
#version="2024.05.20.1821"

CovCalc <- function(coverageRaw,
windowSize = 250,
Expand Down
2 changes: 1 addition & 1 deletion R/customRead.gb.R
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env RScript
#contributors=c("Gregory Smith", "Nils Jenke", "Michael Gruenstaeudl")
#email="m_gruenstaeudl@fhsu.edu"
#version="2024.05.16.1704"
#version="2024.05.20.1821"

read.gbWithHandling <- function(gbkRaw, count=0) {
gbkData <- tryCatch({
Expand Down
2 changes: 1 addition & 1 deletion R/helpers.R
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env RScript
#contributors=c("Gregory Smith", "Nils Jenke", "Michael Gruenstaeudl")
#email="m_gruenstaeudl@fhsu.edu"
#version="2024.05.16.1704"
#version="2024.05.20.1821"

HistCol <- function(cov, threshold, relative, logScale) {
# Function to generate color vector for histogram data
Expand Down
2 changes: 1 addition & 1 deletion R/parsingOps.R
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env RScript
#contributors=c("Gregory Smith", "Nils Jenke", "Michael Gruenstaeudl")
#email="m_gruenstaeudl@fhsu.edu"
#version="2024.05.16.1704"
#version="2024.05.20.1821"

PACVr.parseGenes <- function (gbkSeqFeatures) {
# Function to extract gene information from Genbank flatfile data
Expand Down
2 changes: 1 addition & 1 deletion R/quadripOps.R
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env RScript
#contributors=c("Gregory Smith", "Nils Jenke", "Michael Gruenstaeudl")
#email="m_gruenstaeudl@fhsu.edu"
#version="2024.05.16.1704"
#version="2024.05.20.1821"

FilterByKeywords <- function(allRegions, where) {
# Function to filter list based on genomic keywords
Expand Down
2 changes: 1 addition & 1 deletion R/readingOps.R
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env RScript
#contributors=c("Gregory Smith", "Nils Jenke", "Michael Gruenstaeudl")
#email="m_gruenstaeudl@fhsu.edu"
#version="2024.05.16.1704"
#version="2024.05.20.1821"

read.gbSeqFeaturesAdapt <- function(gbkData, analysisSpecs) {
gbkSeqFeatures <- read.gbSeqFeatures(gbkData,
Expand Down
2 changes: 1 addition & 1 deletion R/visualisationOps.R
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env RScript
#contributors=c("Gregory Smith", "Nils Jenke", "Michael Gruenstaeudl")
#email="m_gruenstaeudl@fhsu.edu"
#version="2024.05.16.1704"
#version="2024.05.20.1821"

vizWithRCircos <- function(gbkData,
coverage,
Expand Down
2 changes: 1 addition & 1 deletion R/writingOps.R
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env RScript
#contributors=c("Gregory Smith", "Nils Jenke", "Michael Gruenstaeudl")
#email="m_gruenstaeudl@fhsu.edu"
#version="2024.05.16.1704"
#version="2024.05.20.1821"

writeCovTables <- function(covData, sample_name, dir) {
writeStatsTable(covData$ir_genes, sample_name, dir, "coverage.genes")
Expand Down

0 comments on commit 3c26875

Please sign in to comment.