Skip to content

Commit

Permalink
2.7.10a_alpha_220314. Fixed another seg-fault issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
alexdobin committed Mar 14, 2022
1 parent b4f8215 commit 3cd7185
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions source/ParametersSolo.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -397,7 +397,8 @@ void ParametersSolo::initialize(Parameters *pPin)
readInfoYes.fill(false);
if (featureYes[SoloFeatureTypes::VelocytoSimple] || featureYes[SoloFeatureTypes::Velocyto]) {//turn readInfo on for Gene needed by VelocytoSimple
readInfoYes[SoloFeatureTypes::Gene]=true;
} else if (samAttrYes){//pSolo.samAttrFeature=0 by default, so need to check samAttrYes
};
if (samAttrYes){//pSolo.samAttrFeature=0 by default, so need to check samAttrYes
if ( featureFirst == SoloFeatureTypes::Gene || featureFirst == SoloFeatureTypes::GeneFull ||
featureFirst == SoloFeatureTypes::GeneFull_Ex50pAS || featureFirst == SoloFeatureTypes::GeneFull_ExonOverIntron ) {
samAttrFeature = featureFirst;
Expand Down Expand Up @@ -693,4 +694,4 @@ void ParametersSolo::init_CBmatchWL()
exitWithError("EXITING because of fatal PARAMETERS error: unrecognized option in --soloCBmatchWLtype " +CBmatchWL.type + "\nSOLUTION: use allowed options: Exact or 1MM or 1MM_multi or 1MM_multi_pseudocounts 1MM_multi_Nbase_pseudocounts\n",
std::cerr, pP->inOut->logMain, EXIT_CODE_PARAMETER, *pP);
};
};
};
2 changes: 1 addition & 1 deletion source/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
#define STAR_VERSION "2.7.10a_alpha_220207"
#define STAR_VERSION "2.7.10a_alpha_220314"

0 comments on commit 3cd7185

Please sign in to comment.