Code Monkey home page Code Monkey logo

Comments (19)

bosborne avatar bosborne commented on July 18, 2024

Chris,

Yes, I can do this. Can the person who did the dissection explain what they did, so I can resect?

Thanks again,

BIO

On Jun 8, 2015, at 4:35 PM, Chris Fields [email protected] wrote:

Consensus (well, handful of on mail list) want this back in. Not sure how easily this can be done; @bosborne https://github.com/bosborne mentioned he could try taking it on?


Reply to this email directly or view it on GitHub #114.

from bioperl-live.

cjfields avatar cjfields commented on July 18, 2024

The persons would be Rob Buels and myself as part of a GSoC project. The idea was that Bio::Root would effectively become the true core, but in hindsight that's likely way too granular and seems to cause too many problems for others. I think a 'clipping the leaves' approach is working better.

Thanks for taking it on. I think the main changes could probably be pulled back in from the 1.6 branch in bioperl-live, failing that a simple copy (I'm not terribly concerned about loss in history). I don't think there is much in the separate repo that hasn't also been added to 1.6 tho.

Chris

On Jun 9, 2015, at 8:01 AM, Brian Osborne <[email protected]mailto:[email protected]> wrote:

Chris,

Yes, I can do this. Can the person who did the dissection explain what they did, so I can resect?

Thanks again,

BIO

On Jun 8, 2015, at 4:35 PM, Chris Fields <[email protected]mailto:[email protected]> wrote:

Consensus (well, handful of on mail list) want this back in. Not sure how easily this can be done; @bosborne https://github.com/bosborne mentioned he could try taking it on?


Reply to this email directly or view it on GitHub #114.


Reply to this email directly or view it on GitHubhttps://urldefense.proofpoint.com/v2/url?u=https-3A__github.com_bioperl_bioperl-2Dlive_issues_114-23issuecomment-2D110350351&d=AwMFaQ&c=8hUWFZcy2Z-Za5rBPlktOQ&r=fbHa8Njtvh9VmSnzJxiEUTW9NWDwMMwQAzhgZDO41GQ&m=FEajqZlkVJ2GUZudnNMrcp0kaKnEmHdadatQWxlTjyg&s=d15UF5cBI1nhbum6Gkqvi5sUddA56ejPoeZCzNskVBU&e=.

from bioperl-live.

majensen avatar majensen commented on July 18, 2024

Brian,
You're the man
MAJ
On 2015-06-09 09:14, Chris Fields wrote:

The persons would be Rob Buels and myself as part of a GSoC project.
The idea was that Bio::Root would effectively become the true core,
but in hindsight thats likely way too granular and seems to cause too
many problems for others. I think a clipping the leaves approach is
working better.

Thanks for taking it on. I think the main changes could probably be
pulled back in from the 1.6 branch in bioperl-live, failing that a
simple copy (Im not terribly concerned about loss in history). I dont
think there is much in the separate repo that hasnt also been added
to
1.6 tho.

Chris

On Jun 9, 2015, at 8:01 AM, Brian Osborne
<[email protected]mailto:[email protected]> wrote:

Chris,

Yes, I can do this. Can the person who did the dissection explain
what they did, so I can resect?

Thanks again,

BIO

On Jun 8, 2015, at 4:35 PM, Chris Fields
<[email protected]mailto:[email protected]> wrote:

Consensus (well, handful of on mail list) want this back in. Not
sure how easily this can be done; @bosborne
https://github.com/bosborne mentioned he could try taking it on?


Reply to this email directly or view it on GitHub
#114.


Reply to this email directly or view it on

GitHubhttps://urldefense.proofpoint.com/v2/url?u=https-3A__github.com_bioperl_bioperl-2Dlive_issues_114-23issuecomment-2D110350351&d=AwMFaQ&c=8hUWFZcy2Z-Za5rBPlktOQ&r=fbHa8Njtvh9VmSnzJxiEUTW9NWDwMMwQAzhgZDO41GQ&m=FEajqZlkVJ2GUZudnNMrcp0kaKnEmHdadatQWxlTjyg&s=d15UF5cBI1nhbum6Gkqvi5sUddA56ejPoeZCzNskVBU&e=.

Reply to this email directly or view it on GitHub [1].

Links:

[1]
#114 (comment)

from bioperl-live.

fjossandon avatar fjossandon commented on July 18, 2024

Hello all!
The last modification to Bio::Root repo was done by me on November last year, and until beginning of January I made sure that the v1.6.x was synched with all the split repos and the main branch, but then I got consumed by job and had to dissappear. =(

Currently the Bio::Root modules from the split repo are almost identical to those on the v1.6.x branch with a few exceptions:

  1. v1.6.x branch have a "HTTPget.pm" module that the split branch don't have.
  2. v1.6.x branch "Build.pm" module use "=head2" for documentation while the split repo use "=func".
  3. v1.6x branch have a "HTTPget.t" test that the split branch don't have and seems like a more developed test file than the split branch extra "xt/RootIO.t" test.
  4. v1.6x branch "Exception.t" test use "use lib './examples/root/lib';'" and the split repo use "use lib './eg';" because of their different folder organization.

In summary, I think it would be safe to just copy back the Root from the v1.6.x branch back into master and nothing will be lost.

PD: I would love to include the last months commits from main to the v1.6.x branch, so its fully updated again, but I'm not sure when I will have time to do it. =/

Cheers,

from bioperl-live.

bosborne avatar bosborne commented on July 18, 2024

Francisco,

Excellent, those are the details I needed.

Thanks again,

BIO

On Jun 9, 2015, at 10:48 AM, Francisco J. Ossandon [email protected] wrote:

Hello all!
The last modification to Bio::Root repo was done by me on November last year, and until beginning of January I made sure that the v1.6.x was synched with all the split repos and the main branch, but then I got consumed by job and had to dissappear. =(

Currently the Bio::Root modules from the split repo are almost identical to those on the v1.6.x branch with a few exceptions:

  1. v1.6.x branch have a "HTTPget.pm" module that the split branch don't have.
  2. v1.6.x branch "Build.pm" module use "=head2" for documentation while the split repo use "=func".
  3. v1.6x branch have a "HTTPget.t" test that the split branch don't have and seems like a more developed test file than the split branch extra "xt/RootIO.t" test.
  4. v1.6x branch "Exception.t" test use "use lib './examples/root/lib';'" and the split repo use "use lib './eg';" because of their different folder organization.

In summary, I think it would be safe to just copy back the Root from the v1.6.x branch back into master and nothing will be lost.

Cheers,


Reply to this email directly or view it on GitHub #114 (comment).

from bioperl-live.

bioperl-guts avatar bioperl-guts commented on July 18, 2024

@bosborne cool! Let me know if you need anything 👍

from bioperl-live.

bioperl-guts avatar bioperl-guts commented on July 18, 2024

Heh, that was @cjfields replying as @bioperl-guts. Attempting to debug notifications 😏

from bioperl-live.

fjossandon avatar fjossandon commented on July 18, 2024

Lol, good one!

Looks like is working fine ;)

De: bioperl-guts [mailto:[email protected]]
Enviado el: martes, 09 de junio de 2015 13:18
Para: bioperl/bioperl-live
CC: Francisco J. Ossandon
Asunto: Re: [bioperl-live] Add Bio::Root back (#114)

Heh, that was @cjfields https://github.com/cjfields replying as @bioperl-guts https://github.com/bioperl-guts . Attempting to debug notifications https://assets-cdn.github.com/images/icons/emoji/unicode/1f60f.png


Reply to this email directly or view it on GitHub #114 (comment) . https://github.com/notifications/beacon/ADnlfi75a-pQhVreTTpEkg6qY0fMCVbDks5oRwkxgaJpZM4E8ME6.gif

from bioperl-live.

bosborne avatar bosborne commented on July 18, 2024

Hmm. I've started working on this, but branched off of master rather than v1.6.x. Was that unwise?

On Jun 9, 2015, at 12:17 PM, bioperl-guts [email protected] wrote:

Heh, that was @cjfields https://github.com/cjfields replying as @bioperl-guts https://github.com/bioperl-guts. Attempting to debug notifications


Reply to this email directly or view it on GitHub #114 (comment).

from bioperl-live.

majensen avatar majensen commented on July 18, 2024

I think that's the Right Thing.

On Sat, Jun 20, 2015 at 11:33 AM, Brian Osborne < [email protected] [[email protected]] > wrote:
Hmm. I've started working on this, but branched off of master rather than
v1.6.x. Was that unwise?

On Jun 9, 2015, at 12:17 PM, bioperl-guts [email protected] wrote:

Heh, that was @cjfields https://github.com/cjfields replying as
@bioperl-guts https://github.com/bioperl-guts. Attempting to debug
notifications


Reply to this email directly or view it on GitHub
#114 (comment).


Reply to this email directly or view it on GitHub
[https://github.com//issues/114#issuecomment-113783266] .[https://github.com/notifications/beacon/AAFAmSNaropQpQZrwVeiht0XQoCOlOCcks5oVX9qgaJpZM4E8ME6.gif]

from bioperl-live.

bosborne avatar bosborne commented on July 18, 2024

Got it, will proceed ….

On Jun 20, 2015, at 11:52 AM, Mark Jensen [email protected] wrote:

I think that's the Right Thing.

On Sat, Jun 20, 2015 at 11:33 AM, Brian Osborne < [email protected] [[email protected]] > wrote:
Hmm. I've started working on this, but branched off of master rather than
v1.6.x. Was that unwise?

On Jun 9, 2015, at 12:17 PM, bioperl-guts [email protected] wrote:

Heh, that was @cjfields https://github.com/cjfields replying as
@bioperl-guts https://github.com/bioperl-guts. Attempting to debug
notifications


Reply to this email directly or view it on GitHub
#114 (comment).


Reply to this email directly or view it on GitHub
[https://github.com//issues/114#issuecomment-113783266] .[https://github.com/notifications/beacon/AAFAmSNaropQpQZrwVeiht0XQoCOlOCcks5oVX9qgaJpZM4E8ME6.gif]

Reply to this email directly or view it on GitHub #114 (comment).

from bioperl-live.

cjfields avatar cjfields commented on July 18, 2024

That’s correct. We’re wanting Root back in master, it’s already in 1.6.x :)

-c

On Jun 20, 2015, at 11:17 AM, Brian Osborne <[email protected]mailto:[email protected]> wrote:

Got it, will proceed ….

On Jun 20, 2015, at 11:52 AM, Mark Jensen <[email protected]mailto:[email protected]> wrote:

I think that's the Right Thing.

On Sat, Jun 20, 2015 at 11:33 AM, Brian Osborne < [email protected]:[email protected] [[email protected]:[email protected]] > wrote:
Hmm. I've started working on this, but branched off of master rather than
v1.6.x. Was that unwise?

On Jun 9, 2015, at 12:17 PM, bioperl-guts <[email protected]mailto:[email protected]> wrote:

Heh, that was @cjfields https://github.com/cjfields replying as
@bioperl-guts https://github.com/bioperl-guts. Attempting to debug
notifications


Reply to this email directly or view it on GitHub
#114 (comment).


Reply to this email directly or view it on GitHub
[https://github.com//issues/114#issuecomment-113783266] .[https://github.com/notifications/beacon/AAFAmSNaropQpQZrwVeiht0XQoCOlOCcks5oVX9qgaJpZM4E8ME6.gifhttps://github.com//issues/114#issuecomment-113783266]%20.[https://github.com/notifications/beacon/AAFAmSNaropQpQZrwVeiht0XQoCOlOCcks5oVX9qgaJpZM4E8ME6.gif]

Reply to this email directly or view it on GitHub #114 (comment).


Reply to this email directly or view it on GitHubhttps://urldefense.proofpoint.com/v2/url?u=https-3A__github.com_bioperl_bioperl-2Dlive_issues_114-23issuecomment-2D113787334&d=AwMFaQ&c=8hUWFZcy2Z-Za5rBPlktOQ&r=fbHa8Njtvh9VmSnzJxiEUTW9NWDwMMwQAzhgZDO41GQ&m=ErFzF4zU7kjaM8UTIF41NGJ9TctM78nPLvEPp-1dLCY&s=y1K9YRT8ZW7ddgED-cMzNB3yXsThKYyfg-jl7VNs0wA&e=.

from bioperl-live.

bioperl-guts avatar bioperl-guts commented on July 18, 2024

OK, the branch is merge_root_into_live.

Those t/Tree/Tree.t and t/Tree/TreeIO.t tests continue to be problematic but all other tests pass.

Notes:

  • eg/TestObject.pm is now Bio/Root/TestObject.pm
  • eg/TestInterface.pm has been removed, looked like it was not used, add it back if you know better
  • references to the old Tutorial have been removed
  • HTML::TableExtract is recommended, added that to the long list of recommended modules in Build.PL
  • a test or 2 needed minor fixes
  • a few POD fixes, here and there

Take a look!

On Jun 20, 2015, at 12:20 PM, Chris Fields [email protected] wrote:

That’s correct. We’re wanting Root back in master, it’s already in 1.6.x :)

-c

On Jun 20, 2015, at 11:17 AM, Brian Osborne <[email protected]mailto:[email protected]> wrote:

Got it, will proceed ….

On Jun 20, 2015, at 11:52 AM, Mark Jensen <[email protected]mailto:[email protected]> wrote:

I think that's the Right Thing.

On Sat, Jun 20, 2015 at 11:33 AM, Brian Osborne < [email protected]:[email protected] [[email protected]:[email protected]] > wrote:
Hmm. I've started working on this, but branched off of master rather than
v1.6.x. Was that unwise?

On Jun 9, 2015, at 12:17 PM, bioperl-guts <[email protected]mailto:[email protected]> wrote:

Heh, that was @cjfields https://github.com/cjfields replying as
@bioperl-guts https://github.com/bioperl-guts. Attempting to debug
notifications


Reply to this email directly or view it on GitHub
#114 (comment).


Reply to this email directly or view it on GitHub
[https://github.com//issues/114#issuecomment-113783266] .[https://github.com/notifications/beacon/AAFAmSNaropQpQZrwVeiht0XQoCOlOCcks5oVX9qgaJpZM4E8ME6.gifhttps://github.com//issues/114#issuecomment-113783266]%20.[https://github.com/notifications/beacon/AAFAmSNaropQpQZrwVeiht0XQoCOlOCcks5oVX9qgaJpZM4E8ME6.gif]

Reply to this email directly or view it on GitHub #114 (comment).


Reply to this email directly or view it on GitHubhttps://urldefense.proofpoint.com/v2/url?u=https-3A__github.com_bioperl_bioperl-2Dlive_issues_114-23issuecomment-2D113787334&d=AwMFaQ&c=8hUWFZcy2Z-Za5rBPlktOQ&r=fbHa8Njtvh9VmSnzJxiEUTW9NWDwMMwQAzhgZDO41GQ&m=ErFzF4zU7kjaM8UTIF41NGJ9TctM78nPLvEPp-1dLCY&s=y1K9YRT8ZW7ddgED-cMzNB3yXsThKYyfg-jl7VNs0wA&e=.


Reply to this email directly or view it on GitHub #114 (comment).


Bioperl-guts-l mailing list
[email protected]
http://mailman.open-bio.org/mailman/listinfo/bioperl-guts-l

from bioperl-live.

cjfields avatar cjfields commented on July 18, 2024

No problems on the branch, everything is passing, everything looks good. On my Mac all t/Tree/Tree.t and t/Tree/TreeIO.t tests are passing (though I'm running w/o network tests). So, full steam ahead to merge back in to master!

from bioperl-live.

majensen avatar majensen commented on July 18, 2024

\o/

On Sat, Jun 20, 2015 at 8:07 PM, Chris Fields < [email protected] [[email protected]] > wrote:
No problems on the branch, everything is passing, everything looks good. On my
Mac all t/Tree/Tree. t and t/Tree/TreeIO.t tests are passing (though I'm running w/o network tests). So, full steam ahead
to merge back in to master!


Reply to this email directly or view it on GitHub
[https://github.com//issues/114#issuecomment-113843977] .[https://github.com/notifications/beacon/AAFAmQ5xetq2mXupnQEOv6OhpU7F_ZLDks5oVffJgaJpZM4E8ME6.gif]

from bioperl-live.

fjossandon avatar fjossandon commented on July 18, 2024

Go go go!!!

De: Mark Jensen [mailto:[email protected]]
Enviado el: sábado, 20 de junio de 2015 21:09
Para: bioperl/bioperl-live
CC: Francisco J. Ossandon
Asunto: Re: [bioperl-live] Add Bio::Root back (#114)

\o/

On Sat, Jun 20, 2015 at 8:07 PM, Chris Fields < [email protected] [[email protected]] > wrote:
No problems on the branch, everything is passing, everything looks good. On my
Mac all t/Tree/Tree. t and t/Tree/TreeIO.t tests are passing (though I'm running w/o network tests). So, full steam ahead
to merge back in to master!


Reply to this email directly or view it on GitHub
[https://github.com//issues/114#issuecomment-113843977] .[https://github.com/notifications/beacon/AAFAmQ5xetq2mXupnQEOv6OhpU7F_ZLDks5oVffJgaJpZM4E8ME6.gif]


Reply to this email directly or view it on GitHub #114 (comment) .

from bioperl-live.

bioperl-guts avatar bioperl-guts commented on July 18, 2024

Let’s also talk about install documentation, while we’re at it. We have a bunch of Wiki pages and INSTALL* files saying slightly different things, when they should all say the same thing. Not referring to Windows, that’s something I don’t know much about. IMO these are the essential messages, and should be in this order in the file or page:

  • use CPAN
  • or if you want to manually install do “git clone …", “perl Build.PL”, etc.
  • those who want local installation should use local::lib

We have the text for CPAN already, of course. No mention of “git clone” or local::lib anywhere, as far as I can see.

Overall there’s just way too much text on this topic in the Wiki and in the INSTALL files, should be simpler.

Thoughts?

On Jun 20, 2015, at 8:10 PM, Francisco J. Ossandon [email protected] wrote:

Go go go!!!

De: Mark Jensen [mailto:[email protected]]
Enviado el: sábado, 20 de junio de 2015 21:09
Para: bioperl/bioperl-live
CC: Francisco J. Ossandon
Asunto: Re: [bioperl-live] Add Bio::Root back (#114)

\o/

On Sat, Jun 20, 2015 at 8:07 PM, Chris Fields < [email protected] [[email protected]] > wrote:
No problems on the branch, everything is passing, everything looks good. On my
Mac all t/Tree/Tree. t and t/Tree/TreeIO.t tests are passing (though I'm running w/o network tests). So, full steam ahead
to merge back in to master!


Reply to this email directly or view it on GitHub
[https://github.com//issues/114#issuecomment-113843977] .[https://github.com/notifications/beacon/AAFAmQ5xetq2mXupnQEOv6OhpU7F_ZLDks5oVffJgaJpZM4E8ME6.gif]


Reply to this email directly or view it on GitHub #114 (comment) .


Reply to this email directly or view it on GitHub #114 (comment).


Bioperl-guts-l mailing list
[email protected]
http://mailman.open-bio.org/mailman/listinfo/bioperl-guts-l

from bioperl-live.

cjfields avatar cjfields commented on July 18, 2024

Re: install docs and so on, see issue #116

from bioperl-live.

cjfields avatar cjfields commented on July 18, 2024

Lost track of this one 😦 . Merged this into master, so closing ticket. Documentation issues will be in #116.

from bioperl-live.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.