Skip to content

Commit 2963117

Browse files
authored
Merge pull request #49 from gogepp/dev
Release 0.4.9
2 parents b8f0ebf + 1765cea commit 2963117

4 files changed

Lines changed: 9 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
66
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html)
77

8+
## [0.4.9] 2023-11-17
9+
10+
### Fixed
11+
12+
- Error management in expression files
13+
814
## [0.4.8] 2023-10-20
915

1016
### Added

imports/api/transcriptomes/addExpression.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ const parseExpressionTsv = ({
123123
const gene = Genes.findOne(geneQuery);
124124

125125
if (typeof gene === 'undefined') {
126-
logger.warn(`${target_id} not found`);
126+
logger.warn(`${row[firstColumn]} not found`);
127127
} else {
128128
nInserted += 1;
129129
replicaGroups.forEach((replicaGroup) => {

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "genoboo",
3-
"version": "0.4.8",
3+
"version": "0.4.9",
44
"repository": "https://github.com/gogepp/genoboo",
55
"description": "A portable website for browsing and querying genome sequences and annotations. Forked from genenotebook",
66
"license": "AGPL-3.0",

private/data/Bnigra_abundance.tsv

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
gene sample1 sample2 sample3 sample4
22
Bni%7CB01g000010.2N 40 60 80 90
3+
blabla 1 2 3 4

0 commit comments

Comments
 (0)