running Juicer "awk: syntax error"
I'm using Juicer to analyze Hi-C data.
I finished install and try to use test data.
When I run
It seems to "chimeric_sam.awk" has a problem. I'm beginner of bioinformatics. Can anyone help me ?
awk
• 1,482 views
•
link
written
by
Jarjayes •
0 answers
No answers yet.
Log in to answer this question.
More posts like this
-
GEOquery getGEO is normalized data or not?
written by tyasird •I'm fetching microarray data using GEOquery. datasets <- c("GSE32676", "GSE43288", "GSE19279", "GSE19280") gset <- getGEO(gse_id, GSEMatrix = TRUE, AnnotGPL = TRUE) So, when I check …
-
LD store2 cannot be matched
written by peggy •I used the IEU Open GWAS to generate Z file, BGEN file, and BGI file in order to create an LD matrix for FINEMAP. I …
-
Use limma for correlation analysis of RNA-seqdata and continous trait
written by Yibin •Hi, there I want to use voom function in limma package to analyze the correlations between expression and age(continous data). I am not sure whether …
-
How to interpret KM graph?
written by prithvi.mastermind •I'm a beginner in R and want to analyze KM graph. What does this plot signify? Is there is worst prognosis at mid expression levels? …
-
testing association between snp and the label disease
written by Eliza •Hi, I'm trying to perform Cochran–Armitage test with SNPs in r. my data looks like this: ![enter image description here][1] i found the cat function …
-
sc/snRNASeq using cell ranger parameters
written by Claire •Hi All I am using cellranger to analyze **sc/snRNASeq** data. I did the same steps as I normally do with **scRNASeq**. Do we need to …
-
Is the current R version (4.1.2) are not suitable for the packages related with TCGA
written by nonaddldy •I cannot install series of packages related with TCGA, no matter through BiocManager::install or install.packages ![enter image description here][1] ![enter image description here][2] ![enter image …
-
non-unique values when setting 'row.names' error in DESeq2
written by Sai Prasada •Hi Everyone! I am trying to run the ```DESeqDataSetFromMatrix()``` command using a specific dataset but I keep getting the following error. ![enter image description here][1] …
-
Can not plot degree distribution in Cytoscape Network Analyzer on logscale
written by bhodai •I am using Cytoscape 3.9.0. When I tried - Tools > Analyze Network, the following window poped-up ![enter image description here][1] When I clicked on …
-
Tutorial: Extracting genomic feature sequences from GTF/GFF files with AGAT
written by Juke34First install [AGAT][1]: ``` conda create -c bioconda -n agat agat conda activate agat ``` Then enjoy possibilities of `agat_sp_extract_sequences.pl`, below exemplified ![enter image description …
Yes, Juicer and Juicebox are notoriously fickly to get to run. I recommend using a Docker container (e.g. this one) to save yourself some hassle.
In your particular case, I think the problem is the macOS version of awk. macOS is a derivative of BSD, whereas most Linux distributions package components of the GNU operating system together with the Linux kernel. (For this reason, a bitter dispute ignited over whether naming it GNU/Linux would be more appropriate). Many utility tools such as
grep,sed,awkhave been notably improved from their original Unix versions by the GNU developers. Thus, the versions shipped with most Linux distributions are superior to those contained in macOS. (e.g. the macOSgrepdoesn’t support Lookarounds or the match reset \K in regexes.). Since the Docker image is based on Linux, things should work there.Thank you. I have not used Docker, but taking this opportunity, I will try to use.
I will ask questions if I there is something that I don't understand.