Exomiser error " Exception in thread "main" java.lang.OutOfMemoryError: Java heap space " full line is " 2017-07-04 02:34:52.617 [main] INFO de.charite.compbio.exomiser.core.factories.VariantFactory - Processed 325375 variant records into 326224 single allele variants, 989 are missing annotations, most likely due to non-numeric chromosome designations " solution is, u have to increase java heap size like this before change, it was -Xms2g -Xmx4g and now after change -Xms4g -Xmx10g
error in console : 3000/node_modules/@angular/core/bundles/core.umd.js:3032 Angular is running in the development mode. Call enableProdMode() to enable the production mode. solution : open main.ts file in src folder and paste these line import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'; import { AppModule } from './app/app.module'; import {enableProdMode} from '@angular/core'; enableProdMode(); platformBrowserDynamic().bootstrapModule(AppModule);
$gzip -d compressed_file.gz #it give give error : gzip: compressed_file.gz: unexpected end of file $gzrecover compressed_file.gz #it will give "compressed_file.recovered" $cpio -F compressed_file.recovered -i -v #it will give output compressed_file #have a nice day ..................................................................................