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 ..................................................................................
hii firstly open terminal and install shelljs $ npm install shelljs $ touch file.js $ nano file.js and type code in file.js var shell = require('shelljs'); shell.echo('hello world'); and save and run the file on terminal $ node file.js
hii firstly open terminal and install shelljs $ npm install shelljs $ touch file.js $ nano file.js and type code in file.js var shell = require('shelljs'); shell.echo('hello world'); and save and run the file on terminal $ node file.js
To get a list of packages installed locally do this in your terminal: dpkg --get-selections | grep -v deinstall To save that list to a text file called packages on your desktop do this in your terminal: dpkg --get-selections | grep -v deinstall > ~/Desktop/packages
last, next, exit all do not work for exit from subroutine but return works for exit from subroutine example input 12 sub fun { my $number = shift; if($number == 12){ print "\n ok bye i am going to outside from subroutine \n"; return; } print "\n anop singh ranawat \n"; } my $number = <>; &fun($number); print "\n have a nice day \n"; result ok bye i am going to outside from subroutine have a nice day