diff options
author | Michael Mair-Keimberger (asterix) <m.mairkeimberger@gmail.com> | 2017-01-29 09:35:41 +0100 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2017-01-29 21:09:13 +0100 |
commit | 033bf2df0038ac8c348fff755347bb75bd2c5bc7 (patch) | |
tree | 249bc43035d176a347be382ffd4165a5d5393fbd /sci-biology | |
parent | sci-biology/bioperl-run: remove unused patch (diff) | |
download | gentoo-033bf2df0038ac8c348fff755347bb75bd2c5bc7.tar.gz gentoo-033bf2df0038ac8c348fff755347bb75bd2c5bc7.tar.bz2 gentoo-033bf2df0038ac8c348fff755347bb75bd2c5bc7.zip |
sci-biology/elph: remove unused patch
Closes: https://github.com/gentoo/gentoo/pull/3708
Diffstat (limited to 'sci-biology')
-rw-r--r-- | sci-biology/elph/files/elph-0.1.4-usage.patch | 133 |
1 files changed, 0 insertions, 133 deletions
diff --git a/sci-biology/elph/files/elph-0.1.4-usage.patch b/sci-biology/elph/files/elph-0.1.4-usage.patch deleted file mode 100644 index be49e2d1ebb8..000000000000 --- a/sci-biology/elph/files/elph-0.1.4-usage.patch +++ /dev/null @@ -1,133 +0,0 @@ ---- elph.cc~ 2003-06-03 14:45:22.000000000 -0400 -+++ elph.cc 2004-10-30 10:14:49.220415168 -0400 -@@ -26,11 +26,11 @@ - period variable\n\ - -x : print maximum positions within sequences\n\ - -g : find significance of motif\n\ -- -t <matrix> : test if there is significant difference between the two -- input files for a given motif matrix; <matrix> is the file -+ -t <matrix> : test if there is significant difference between the two\n\ -+ input files for a given motif matrix; <matrix> is the file\n\ - containing the motif matrix\n\ -- -l : compute Least Likely Consensus (LLC) for given motif -- -c : in conjunction with -m option: motif is not necessarily in -+ -l : compute Least Likely Consensus (LLC) for given motif\n\ -+ -c : in conjunction with -m option: motif is not necessarily in\n\ - the closest edit distance from input motif\n\ - LEN=n : n = length of motif\n\ - ITERNO=n : n = no of iterations to compute the global maximum;\n\ -@@ -41,7 +41,7 @@ - default = 1000\n\ - " - --// global variables: -+// global variables: - int ITER_NO=10; - int MAX_LOOP=500; - int printmax=0; -@@ -66,7 +66,7 @@ - seqType t; - - GArgs args(argc, argv, "ho:abglvdxt:p:s:m:n:LEN=ITERNO=MAXLOOP=SGFNO="); -- -+ - // == Process arguments. - - int e; -@@ -83,7 +83,7 @@ - - if(!testfile.is_empty()) { // if testfile is defined then only compute significance between the two files - -- M = new Motif(infile,outf,t,matrixfile,pattern,motiflen,ITER_NO,MAX_LOOP,inlocmax,mdet); -+ M = new Motif(infile,outf,t,matrixfile,pattern,motiflen,ITER_NO,MAX_LOOP,inlocmax,mdet); - M->twofilesignif(gdet,testfile,SignifNo,print,pattern); - - } -@@ -93,11 +93,11 @@ - // given motif - - M = new Motif(infile,outf,t,pattern); -- if(defLLC) { -+ if(defLLC) { - double llc=M->computeLLC(pattern,print); - fprintf(outf,"LLC = %f\n",llc); - } -- -+ - } - else { - -@@ -108,7 +108,7 @@ - } - - double globAlignProb; -- -+ - globAlignProb=M->findMotif(ITER_NO,MAX_LOOP,inlocmax,1,mdet); - - -@@ -116,13 +116,13 @@ - /*info=M->InfoPar(globAlignProb); - fprintf(outf,"MAP for motif: %.3f InfoPar=%.3f\n\n",globAlignProb,info); - M->printMotif();*/ -- -+ - // optimizing - fprintf(stderr,"Optimizing...\n"); - globAlignProb=M->optimize(globAlignProb,info,closest); - fprintf(outf,"\n\n**********************\n\nMotif after optimizing\n"); - fprintf(outf,"MAP for motif: %.3f InfoPar=%.3f\n\n",globAlignProb,M->InfoPar(globAlignProb)); -- -+ - if(runsignif) { - M->runforsignif(SignifNo,print,gdet,pattern); - } -@@ -134,17 +134,17 @@ - - seqType Process_Options(GArgs* args) - { -- -- if (args->startNonOpt()) { //parse the non-options arguments -+ -+ if (args->startNonOpt()) { //parse the non-options arguments - //(usually filenames) - infile=args->nextNonOpt(); - } - -- if (infile.is_empty() || args->getOpt('h')!=NULL) -+ if (infile.is_empty() || args->getOpt('h')!=NULL) - GError("%s",usage); // the empty test is optional you can ignore it if you accept stdin input - - testfile=args->nextNonOpt(); -- -+ - GString outfile=args->getOpt('o'); - if (!outfile.is_empty()) { - outf=fopen(outfile, "w"); -@@ -156,7 +156,7 @@ - matrixfile=args->getOpt('t'); - - GString param; -- -+ - pattern=args->getOpt('m'); - if(pattern.is_empty()) { - param=args->getOpt("LEN"); -@@ -200,7 +200,7 @@ - - seqType t; - if(args->getOpt('a')!=NULL) t=aac; else t=nucl; -- -+ - return(t); - - } -@@ -210,7 +210,7 @@ - Motif *M; - - double llcmax=-HUGE_VAL; -- GString seed; -+ GString seed; - for(int i1=0;i1<4;i1++) - for(int i2=0;i2<4;i2++) - for(int i3=0;i3<4;i3++) |