Tagged Questions
1
vote
0answers
15 views
Using python CGISimpleServer to export d3 svg
I'd like to export the svg from a d3 chart to a .svg file without requiring any interaction from the user. I'm using code based on this great example :
http://d3export.cancan.cshl.edu/
but server ...
4
votes
2answers
69 views
Random sampling of non-overlapping substrings of length k
Given a string of length n, how would I (pseudo)randomly sample m substrings of size k such that none of the sampled substrings overlap? Most of my scripting experience is in Perl, but an easy-to-run ...
1
vote
4answers
62 views
text restyling in python
i have a text file which has thousands of lines something like this format (a, b, c, d, e) (here, a is 6 digited number, b is 3 letter code, c is date, d is floating number and e is -1, 0 or 1) i want ...
3
votes
1answer
79 views
Python equivalent of Perl's HTTP::Async->next_response
I'm looking for a way to do the equivalent of Perl's HTTP::Async module's next_response method
The HTTP::Async module doesn't spawn any background threads, nor does it use any callbacks. Instead, ...
-1
votes
3answers
57 views
python equivalent to perl's @{$obj->method($args)} or %{$obj->method($args)}
Title demonstrates the perl idiom I wish to convey in my python script. I realize this could be construed as bad practice, potentially due to (lack of) exception handling. Though nonetheless I find ...
0
votes
1answer
20 views
Extracting Visual Event 2 output into script
In the Visual Event description, it says that it extracts "which elements have events attached to them". I can confirm this by running the bookmarklet and seeing all the colour highlights.
I would ...
0
votes
1answer
23 views
wrapping a custom hash table using swig
I have a custom implementation of a hash table written in C for an application that I am developing. Now I want to create a wrapper for it in swig so that I can map them into native types like "dict" ...
0
votes
3answers
96 views
Optimize shell script (bash) to impove performance
I have a bash script which I use to process a text file:
#/bin/bash
dos2unix sourcefile.txt
cat sourcefile.txt | grep -v '\/' | grep -v '\-\-' | grep -v '#' | grep '[A-Za-z]\*' > ...
-2
votes
0answers
35 views
How to plot two data sets having different types of X-axis values from different files (csv or text files) in a single plot in R
Actually i've more than two files which contains different sets of data having different x,y values in each file... i want to generate a plot for these all the files each file with different ...
0
votes
1answer
38 views
How to call a script from webpage served by apache
I am trying to create a webpage form that when submitted, it would call a filebot script (or any program in Unix with a large list of parameters". When I run this command from the Unix prompt, it ...
1
vote
2answers
85 views
Busy box, Run C, python or Perl programs
All I have is bourne shell and busy box.
Is there any way to run a python script or compile a c program or any languages like perl ..
like
busybox python eatmemory.py 100M
or
busybox gcc ...
1
vote
2answers
47 views
Does file content fully exist in library files
I have just completed the refactoring of a long piece of code.
My refactoring included breaking up the source code into many functions in many files at many folders.
Now that I'm done, I want to ...
-1
votes
0answers
30 views
Automating gdb sessions by executing script under gdb [closed]
I have to write a tool/script(python or perl) which will be executed under gdb, it will extract information from core dump. if a person does not know gdb commands, even he/she can debug the code using ...
1
vote
2answers
96 views
search sequence in genome with mismatches
i have a fastq file with more than 100 million reads in it and a genome sequence of 10000 in length
i want to take out the sequences from the fastq file and search in the genome sequence with ...
3
votes
2answers
74 views
Running code with another interpreter on a Perl script
This thread discusses a way of running Python code from within a Bash script.
Is there any way to do something similar from within a Perl script? i.e. is there any way to run Python code typed on a ...
0
votes
6answers
87 views
Remove duplicate lines (including the line that is duplicated) [duplicate]
I need to remove all lines that occur more than once in a file.
Example:
Line1
Line2
Line3
Line2
Result:
Line1
Line3
Python, Perl or unix-util, doesn't matter. Thank you.
1
vote
2answers
63 views
Equivalent to Perl Modulino for Ruby, Python?
I know Perl has a design pattern known as a modulino, in which a library module file can act as both a library and a script. Is there any equivalent to this in Ruby / Python?
I think this design ...
-1
votes
1answer
30 views
Copy multiple columns from csv to other and save [closed]
I have a large delimited file, which need to be convertd into multiple delimited files based on column headers.
Suppose I have H1, H2, H3, H4, H5, H6 as column headers, I want to extract H2, H6, H4 ...
2
votes
2answers
61 views
Determine absolute path from relative path
I would like to convert a relative path to absolute path in a perl script. My understanding was, File::Spec->rel2abs would be able to handle it gracefully, but in the following scenario, I am not ...
-5
votes
3answers
55 views
Trying to compare a calculation on float values returns false [duplicate]
Why it equals allways false?
<?php
$a = (0.1+0.2);
print $a."\n"; // results in 0.3
if ( (double)$a == (double)0.3 ) {
echo "true";
}else{
echo "not true";
}
echo PHP_EOL;
Perl
perl ...
1
vote
1answer
116 views
Using python in windows to run a remote perl script on linux
I need to connect from a Windows machine to a remote Linux server and execute a Perl script.
I've tried using
command = "perl /usr/local/xfer/file.pl -ssh root@"+hostname+" -pw password -batch"
pid = ...
-2
votes
1answer
54 views
averaging only second column data from multiple files
I have total 64 files with each file name as below:
diffusion-isomalto-thermo1.dat_x.xmgr
diffusion-isomalto-thermo2.dat_x.xmgr
diffusion-isomalto-thermo3.dat_x.xmgr
...
0
votes
3answers
68 views
re-scaling the values between given maximum and minimum, where max is positive and min is negative
I want the re-scale an array of values (both positive and negative floating point values), so that the values lies between say -5 to +5 or say -3 to +2. How can I scale it down. Is there any specific ...
1
vote
1answer
66 views
Analogues of Perl's modules List::Util, List::MoreUtils functionality in Python [closed]
There's a very useful thing in Perl for functional style lists manipulation List::Util, List::MoreUtils. Is there an analogue for Python? I particularly interested in uniq, reduce, any, all and none.
...
-3
votes
1answer
82 views
Lost Excel Graph after saving Excel file [closed]
I am trying to work with Excel files under a *nix environment.
I have checked this behaviour in openpyxl but do we have any workaround to resolve this issue?
I have excel Sheet (xlsx or xls) which ...
2
votes
1answer
75 views
How to create a dict equivalent in Python from Perl hash?
I'm new to python, and can't get my head around dict hashes.
Here's my perl code:
my %sites;
foreach (@indexes) {
push @{$sites{$1}}, $_ if (/.*\.(.*)/);
}
foreach my $sites (keys %sites)
{
...
1
vote
2answers
109 views
create charts in excel using (python,perl)(linux)
I need to generate chart/graph into Excel sheet from data present into Excel sheet. I am using python in linux environment. I have gone through below question but did not find any answer.I am using ...
1
vote
1answer
102 views
Convert MSword to XML/HTML on Linux
I need to convert MSWord file into XML or HTML, while preserving the structure of the file (mainly tables). I happened to find tika, which is quite powerful in extracting text from MSword files (and ...
2
votes
1answer
57 views
How to round off a value but not in unit step
I am trying to round off couple of decimal values in bash using awk. Ex: if values is 6.79
awk 'BEGIN {rounded = sprintf("%.0f", 6.79); print rounded }'
this returns me 7.
Is there a way in which ...
0
votes
2answers
43 views
I want collect all characters and events that end with a certain text? [closed]
I want to collect all data before a specified text or that ends with it, I have tried the following:
.{30}Value_*|.{55}Value2_*
But you have to specify how many characters you want to collect ...
-2
votes
9answers
141 views
getting the number of unique values [closed]
I have some text files with two columns. first column is the position of amino acids and the second column is the name of amino acids.I would like to get the total number of each amino acids from all ...
-1
votes
2answers
70 views
Bash/python/perl magic to get aggregate datetimes across multiple log files
I have a directory (/home/myuser/logs) that contains the following log files for the last 5 days:
applogs_20130402.txt
applogs_20130401.txt
applogs_20130331.txt
applogs_20130330.txt
Each line of ...
-3
votes
1answer
76 views
how can I convert this python code to perl code [closed]
Am not basically a programmer .... I need to learn a lot
how can I do this in perl, I tried doing this in perl, but unable get the results, am unable make this function in perl
def phase(b,e,f):
...
0
votes
0answers
36 views
Pythons equivalent of Perl's HTTP::Proxy module
I am porting a Perl project that uses HTTP::Proxy module (which itself uses the HTTP::Daemon, HTTP::Proxy::Engine, LWP and a couple of other modules) to implement a proxy server that is capable of ...
2
votes
2answers
75 views
How do I construct an oauth api call?
I'm trying to get tumblr "liked" posts for a user at the http://api.tumblr.com/v2/user/likes url. I have registered my app with tumblr and authorized the app to access the user's tumblr data, so I ...
0
votes
1answer
110 views
Conditional proxy server in python/perl/shell script
I've an application which queries a hostName:port for some service, a webservice. During development some of the services are not available or under construction by a third party, hence to develop our ...
-5
votes
3answers
154 views
How to Approach Programming as a Newbie? [closed]
I guess asking this question will raise some eyebrows but I couldn't find something suitable using search so here it goes.
I'm a Linux sysadmin who has never really done coding. It used to be OK ...
3
votes
5answers
249 views
How to draw a plot joining points from two measurement times?
First question here!
I have two columns of data and each row are a pair of values. I want to plot the first column and the second column vertically and have a line connecting each pair of values, ...
1
vote
3answers
72 views
Performing calculations on every pair of fields
For genetic analyses I'm trying to convert a 2-probability file (10gb) to 3-probabilities file . basically i have to insert a third column after every 2 other instances, this third column can be ...
-1
votes
2answers
138 views
Possible to use GPGPU + Python/Perl to parse huge text file? [closed]
I would like to know if it's possible to use a GPGPU in combination with Python or Perl to speed up the line-by-line regex parsing of a many-GB text file. This seems to be a task that could be ...
1
vote
0answers
81 views
Programmatically copy annotations from one PDF to another with Ruby
I have a large number of books in PDF format, mostly from publishers like the Pragmatic Programmers, and I have made many annotations (comments, highlights, notes, etc.) in the PDFs that I'd like to ...
-2
votes
2answers
99 views
Extracting alphanumeric text from csv file
I have a location grid (A-I and 1-9) that is referenced in a flat file (*.csv) in various forms that sometimes includes white-space, and random case, such as: 9-H, @ b 3, e-4, d4, c6, 5h, C2, i9, ... ...
3
votes
4answers
93 views
Read a file and cut each line based on multiple criteria
I found it tough to come up with a proper title for this question. So, if it is misleading, I would appreciate if you can help improve it.
I have extracted the value of the attributes of an xml file ...
4
votes
2answers
105 views
permute arguments of matrix with regex
To increase the performance in a FORTRAN code, I'd like to permute the indices of arrays such that the 4th index is moved to the second place, for example, I want to change the following line
...
0
votes
1answer
36 views
shell: save and restore mtime based on sha1 hash [closed]
I have a set of several thousand files that are automatically re-generated every 24-hours (e.g. ports-readmes on OpenBSD).
Most of the time, the content of these files doesn't change, but since they ...
0
votes
1answer
48 views
Extract e-mail data [closed]
I'm looking to make a script that fetches data out of e-mails send to a specific e-mail address, on a mail server.
The script should only read into e-mails of that one e-mail address.
I was ...
-4
votes
2answers
80 views
count the total number of strings in a column [closed]
I would like to count the unique lines across multiple files:
f1.txt
2039-177 GRAPE
2039-177 GRAPE
2039-176 GRAPE
2039-176 GRAPE
234-450 APPLE
f2.txt
690-346 MANGO
690-346 MANGO
347-348 GRAPE
...
2
votes
3answers
100 views
Simple file server to serve current directory
I'm looking for a dead simple bin that I can launch up in the shell and have it serve the current directory (preferably not ..), with maybe a -p for specifying port. As it should be a development ...
0
votes
1answer
132 views
Linux start perl or python in background command [closed]
I am making a PHP script to use SSH2 to send remote commands to a server and return a json response. But the only problem is that in the perl and some python scripts it takes up to 30 seconds to ...
5
votes
2answers
179 views
does calling a shell command from within a scripting language slow down performance?
When writing python, perl, ruby, or php
I'll often use ...
PERL:
`[SHELL COMMAND HERE]`
system("[SHELL]", "[COMMAND]", "[HERE]")
Python
import os
os.system("[SHELL COMMAND HERE]")
from subprocess ...

