An alternative M-x interface for Emacs.
c9s/App-gh 53
GitHub Command-line Utility.
Reproducible reanalysis of a combined ChIP-Seq & RNA-Seq data set
DarwinAwardWinner/crm-custom 8
Alternate completing-read-multiple that uses completing-read
DarwinAwardWinner/Dist-Zilla-Plugin-CopyFilesFromBuild 5
Copy specific files after building (for SCM inclusion, etc.)
DarwinAwardWinner/adjust-parens 4
Indent and dedent Lisp code, automatically adjust close parens
DarwinAwardWinner/Dist-Zilla-Plugin-ReadmeAnyFromPod 3
Automatically convert POD to a README for Dist::Zilla
Powerful GitHub Helper Utility in Perl.
DarwinAwardWinner/BiocParallel 2
Bioconductor facilities for parallel evaluation (experimental)
DarwinAwardWinner/cd4-histone-paper-code 2
Public release of most of the data analysis code for Lamere et. al. 2016
issue commentBioconductor/BiocParallel
Error in serialize(data, node$con) : error writing to connection
Please see my previous comment, I cannot be more helpful without a reproducible example.
comment created time in 13 hours
issue commentBioconductor/BiocParallel
Error in serialize(data, node$con) : error writing to connection
hi, I want to speed up code execution by using this package.But this error occurs frequently, and it resumes normal operation after a while. I don't know why. thank you~
------------------ 原始邮件 ------------------ 发件人: "Bioconductor/BiocParallel" ***@***.***>; 发送时间: 2021年6月17日(星期四) 晚上10:03 ***@***.***>; ***@***.******@***.***>; 主题: Re: [Bioconductor/BiocParallel] Error in serialize(data, node$con) : error writing to connection (#143)
This could be because the data (input or return) is too large. Pass less data, e.g., a path to a file on your system instead of the contents of the file in memory.
It could also be that an error occurs in your code. Try running with register(SerialParam()) instead of in parallel.
Please report back here if this helps.
— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub, or unsubscribe.
comment created time in a day
issue commentBioconductor/BiocParallel
Error in serialize(data, node$con) : error writing to connection
This could be because the data (input or return) is too large. Pass less data, e.g., a path to a file on your system instead of the contents of the file in memory.
It could also be that an error occurs in your code. Try running with register(SerialParam()) instead of in parallel.
Please report back here if this helps.
comment created time in a day
issue openedBioconductor/BiocParallel
Error in serialize(data, node$con) : error writing to connection
hello,I have a problem when use the BiocParallel package.When I use the bplappy() function,it reports an error and terminates the code operation: Error in serialize(data, node$con) : 链结书写发生了错误 Calls: local ... .send -> <Anonymous> -> sendData.SOCKnode -> serialize how can I solve this problem? Thank you ~
created time in a day
PR opened dimitri/el-get
Without this commit, installation of emms fails with:
make: *** No rule to make target 'autoloads'. Stop.
pr created time in 5 days
push eventdimitri/el-get
commit sha ccca97f2264b64a0474fcc68378ebeb10b72f1e7
Replace cl by cl-lib Since Emacs 27 the package cl is deprecated, the replacement is cl-lib, which is available since Emacs 24.3. This patch replaces cl by cl-lib and drops support for Emacs versions less than 24.3. Dropping older Emacsen is required, because cl-lib is a builtin starting from version 24.3 and doesn't need an extra package from ELPA. Testcases for past issues still contain cl. Most of them seem to be broken and need further investigation. This patch is tested with test/run-ert.sh, which outputs: Ran 10 tests, 10 results as expected, 0 unexpected (2021-01-30 13:24:54+0100, 0.672122 sec) 1 expected failures and manually by daily usage for a month now.
commit sha 7bc810803de735232e69e8326f17dcbc8eefed76
Use cl-mapcan instead of mapcan The function mapcan exists outside cl since Emacs 26.1.
commit sha 5a4fa85f40d77a93cbf102639f3a30c77bc0a2f6
Remove Emacs 23.4 from Github Actions test workflow This change is required, because Emacs 23 doesn't natively provide cl-lib.
commit sha 21a75ba79b4188c32866c4bffe83992722fbaa84
Fix missing requirements
commit sha ac986792c35638bdcfc8b69ecd5a4132d4a82668
Fix position of define-obsolete-variable-alias
commit sha 4d6f30d165cabe20f6e980ec5db1f0b049307f05
Fix lambda invocation for Emacs 28
commit sha ebaa979d2b601a5fefc3a50fc57a662f29784dad
Fix doc string for el-get-verbose Emacs 28 enforces 80 characters per doc string line.
commit sha ec135b5353867ce3564a675e99024944b834395d
Merge pull request #2802 from stephan-cr/replace-cl Replace cl by cl-lib
push time in 5 days
PR merged dimitri/el-get
Since Emacs 27 the package cl is deprecated, the replacement is cl-lib, which is available since Emacs 24.3.
This patch replaces cl by cl-lib and drops support for Emacs versions less than 24.3. Dropping older Emacsen is required, because cl-lib is a builtin starting from version 24.3 and doesn't need an extra package from ELPA.
Testcases for past issues (in test/issues) still contain cl. Most of them seem to be broken and need further investigation.
This patch is tested with test/run-ert.sh, which outputs:
Ran 10 tests, 10 results as expected, 0 unexpected (2021-01-30 13:24:54+0100, 0.672122 sec)
1 expected failures
and manually by daily usage for a month now.
This PR addresses issue #2792.
pr closed time in 5 days
PR closed dimitri/el-get
Build el-get for Emacs 27.1 as well.
pr closed time in 5 days
pull request commentdimitri/el-get
Closed, because el-get moved to Github Actions.
comment created time in 5 days
pull request commentdimitri/el-get
@tarao Fixed all compilation errors. The PR doesn't look nice, because it fixes several unrelated errors, due to unreliable CI. I created a follow-up issue to fix the remaining compilation errors.
comment created time in 5 days
issue openeddimitri/el-get
Byte compilation should be separately done for each file
$ byte-compile -Werror *.el
... nothing.
$ for i in *.el ; do byte-compile -Werror $i ; done
In toplevel form:
el-get-byte-compile.el:64:9:Error: reference to free variable ‘el-get-byte-compile’
In toplevel form:
el-get-core.el:42:9:Error: reference to free variable ‘el-get-verbose’
In toplevel form:
el-get-dependencies.el:186:1:Error: the function ‘el-get-read-package-with-status’ is not known to be defined.
In toplevel form:
el-get.el:199:28:Error: The compiler ignores ‘autoload’ except at top level. You should
probably put the autoload of the macro ‘el-get-bundle’ at top-level.
In toplevel form:
el-get-list-packages.el:452:1:Error: the following functions are not known to be defined: el-get-recipe-filename, el-get-package-type, el-get-package-def, el-get-package-method, el-get-version-to-list, el-get-recipe-pprint, el-get-read-all-recipes
In toplevel form:
el-get-methods.el:46:11:Error: reference to free variable ‘el-get-allow-insecure’
In toplevel form:
el-get-recipes.el:331:1:Error: the function ‘el-get-github-parse-user-and-repo’ is not known to be defined.
In toplevel form:
el-get-status.el:81:21:Error: reference to free variable ‘el-get-status-file’
This issue causes spurious CI failures.
created time in 5 days
pull request commentdimitri/el-get
@tarao For some strange reason https://github.com/dimitri/el-get/pull/2838/checks?check_run_id=2813750015 gives:
In toplevel form:
methods/el-get-go.el:42:43:Error: reference to free variable ‘el-get-dir’
I cannot reproduce it locally, but I fix that nevertheless.
comment created time in 5 days
pull request commentdimitri/el-get
@stephan-cr I think I could fix it now. It seems that byte-compilation tests should run if there is change outside recipe/.
Here are results from a test pull request; I think these are what you have expected: https://github.com/dimitri/el-get/pull/2838/checks?check_run_id=2813750015
comment created time in 5 days
pull request commentdimitri/el-get
(DO NOT MERGE) Test GitHub Actions
Strangely, running
$ byte-compile -Werror *.el methods/*.el
gives me
Source file ‘/home/stephan/.emacs.d/el-get/el-get/el-get-notify.el’ newer than byte-compiled file; using older file
In toplevel form:
el-get-notify.el:24:1:Error: Alias for ‘el-get-growl-notify-path’ should be declared before its referent
Neither Travis-CI nor GH do fail for this.
comment created time in 5 days
PR closed dimitri/el-get
pr closed time in 5 days
pull request commentdimitri/el-get
(DO NOT MERGE) Test GitHub Actions
It looks good now.
comment created time in 5 days
push eventdimitri/el-get
commit sha 99c828f01dd9c0195bdd96130085ba37dc35c761
Prefer .pull_request.base.sha than .before in case of force-push.
push time in 5 days
push eventdimitri/el-get
commit sha 792592180304f116e475903b45dcf2d3963d0a26
jq returns null for missing fields.
push time in 5 days
PR opened dimitri/el-get
pr created time in 5 days
push eventdimitri/el-get
commit sha 4165fefe168db6bcc7c94f303ef080567240fb91
Print event.json.
commit sha 76340ecd117b34eca2a2c9496c22e2795d3bd595
Reconstruct COMMIT_RANGE from GitHub event JSON.
commit sha e67328edfa10d2b83ae5dd85bd7e7783d07ffff0
Merge pull request #2837 from tarao/fix-github-actions-commit-range Fix GitHub Actions COMMIT_RANGE
push time in 5 days
pull request commentdimitri/el-get
@tarao It must be something different, the message fatal: origin/master...HEAD: no merge base appears for the successful ones as well.
comment created time in 6 days
pull request commentdimitri/el-get
Aha, I guess it is about a workaround replacing TRAVIS_COMMIT_RANGE. I will fix it but it may take some time.
comment created time in 6 days
pull request commentdimitri/el-get
Rebased to current master. Some check for Emacs 24.5 fails with fatal: origin/master...HEAD: no merge base.
comment created time in 6 days
pull request commentdimitri/el-get
@stephan-cr
I had the same question and looked into the test code. It seems that byte-compilation is skipped for recipe-only changes (non-code changes) except on Emacs 24.5. So, it should do byte-compilation test on your replace-cl branch after rebasing master branch.
comment created time in 6 days
pull request commentdimitri/el-get
@tarao I saw your changes. Great move! But I wonder why byte-compile -Werror *.el methods/*.el doesn't fail for Emacs 27.2.
comment created time in 6 days
push eventdimitri/el-get
commit sha bffcd8e90bc5fbe025486f5e735bd7b57a4740dc
typo
push time in 6 days
pull request commentdimitri/el-get
@stephan-cr I've added Emacs 27.2 to CI during switching from Travis CI to GitHub Actions in #2836. Could you continue #2802 with this?
comment created time in 6 days