We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
After MAGeCK version 0.5.4, changes where made to mageckCount.py and caused an error here when trying to run caRpools::stat.mageck().
0.5.4
mageckCount.py
caRpools::stat.mageck()
The error traceback:
INFO @ Tue, 27 Feb 2018 13:30:49: Processing 1 lines.. WARNING @ Tue, 27 Feb 2018 13:30:49: Line 1 of the read count table has fewer than 3 columns. Skip this line ... Traceback (most recent call last): File "/home/dchiu/bin/mageck", line 66, in <module> main(); File "/home/dchiu/bin/mageck", line 51, in main magecktest_main(args); File "/home/dchiu/lib/python2.7/site-packages/mageck/crisprFunction.py", line 562, in magecktest_main mapres=getcounttablefromfile(args.count_table) File "/home/dchiu/lib/python2.7/site-packages/mageck/mageckCount.py", line 372, in getcounttablefromfile geneid=field[1]
Forcing the output to be in CSV format seems to fix the issue:
# In stat.mageck, change these lines dataset.combined.file = paste(dirstore, "/", filename, "_MAGeCK_sgRNA.tab", sep = "") write.table(dataset.combined, file = dataset.combined.file, row.names = FALSE, quote = FALSE) # to these lines dataset.combined.file = paste(dirstore, "/", filename, "_MAGeCK_sgRNA.csv", sep = "") write.table(dataset.combined, file = dataset.combined.file, row.names = FALSE, quote = FALSE, sep = ",")
The text was updated successfully, but these errors were encountered:
jwinter6
No branches or pull requests
After MAGeCK version
0.5.4
, changes where made tomageckCount.py
and caused an error here when trying to runcaRpools::stat.mageck()
.The error traceback:
Forcing the output to be in CSV format seems to fix the issue:
The text was updated successfully, but these errors were encountered: