Skip to content

Commit

Permalink
Merge pull request #49 from gogepp/dev
Browse files Browse the repository at this point in the history
Release 0.4.9
  • Loading branch information
mboudet authored Nov 17, 2023
2 parents b8f0ebf + 1765cea commit 2963117
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html)

## [0.4.9] 2023-11-17

### Fixed

- Error management in expression files

## [0.4.8] 2023-10-20

### Added
Expand Down
2 changes: 1 addition & 1 deletion imports/api/transcriptomes/addExpression.js
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ const parseExpressionTsv = ({
const gene = Genes.findOne(geneQuery);

if (typeof gene === 'undefined') {
logger.warn(`${target_id} not found`);
logger.warn(`${row[firstColumn]} not found`);
} else {
nInserted += 1;
replicaGroups.forEach((replicaGroup) => {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "genoboo",
"version": "0.4.8",
"version": "0.4.9",
"repository": "https://github.com/gogepp/genoboo",
"description": "A portable website for browsing and querying genome sequences and annotations. Forked from genenotebook",
"license": "AGPL-3.0",
Expand Down
1 change: 1 addition & 0 deletions private/data/Bnigra_abundance.tsv
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
gene sample1 sample2 sample3 sample4
Bni%7CB01g000010.2N 40 60 80 90
blabla 1 2 3 4

0 comments on commit 2963117

Please sign in to comment.