Sponsored Content
The Lounge What is on Your Mind? New Migration Tool: Link to Discourse Community Topic from vB Thread Tools Menu Post 303046179 by Neo on Monday 27th of April 2020 08:16:08 AM
Old 04-27-2020
New Migration Tool: Link to Discourse Community Topic from vB Thread Tools Menu

Dear All,

To help with migration data integrity checks, today I spend the day working on this and created a migration tool which I hope is useful.

Basically, I mapped all the new discourse topic ids to the original forum thread id and moved all that information to the mysql DB of this forum. I think the effort was worth it.

You can now visit the corresponding topic in the new forum via the thread drop down menu:

New Migration Tool:  Link to Discourse Community Topic from vB Thread Tools Menu-screen-shot-2020-04-27-70902-pmjpg


This feature is available only to registered users (for now).

It took me all day do get these mappings done and working; so I hope our great members find this tool useful.

Also note, if the thread has not been migrated yet, or for some reason it not in the mapping, there will be no "community menu item" in the thread tools menu.

Also note, if the thread is not in a public forum (for example a jailed thread in a spam forum or a topic in the moderator forum), this quick tool will (actually may) not work. This tool is only for publicly visible discussions threads.
These 3 Users Gave Thanks to Neo For This Post:
 

3 More Discussions You Might Find Interesting

1. What is on Your Mind?

VBulletin 3.8 to Discourse on Docker Migration Test Take Two

OK. Like we all do, we learn a lot from tests, test migrations, and so forth. Today, I started from scratch on test migration 2, armed with a lot more knowledge, The main differences are as follows: Installed discourse plugin ruby-bbcode-to-md before starting the install Modified... (30 Replies)
Discussion started by: Neo
30 Replies

2. What is on Your Mind?

VBulletin 3.8 to Discourse on Docker Migration Test Take Four

Test Build 4 on New Server, with changes identified in discourse test builds 2 and 3, primarily: Insuring ruby-bbcode-to-markdown is enabled. Removing line breaks from ICODE to markdown in migration script. Added vbpostid to posts in discourse to setup migrating vb "thanks" to discourse... (28 Replies)
Discussion started by: Neo
28 Replies

3. What is on Your Mind?

Update on vB3 Migration to Discourse - Issues and Status of BBCode Transformations

We "completed" the migration of this vB3 site to Discourse a number of days ago. However, deeper testing by @Scrutinizer and @MadeInGermany revealed that a lot of text was mangled in the migration. We traced these bugs to two issues: A minor bug in the Ruby vbulletin.rb migration script... (19 Replies)
Discussion started by: Neo
19 Replies
Bio::Tools::Gel(3pm)					User Contributed Perl Documentation				      Bio::Tools::Gel(3pm)

NAME
Bio::Tools::Gel - Calculates relative electrophoretic migration distances SYNOPSIS
use Bio::PrimarySeq; use Bio::Restriction::Analysis; use Bio::Tools::Gel; # get a sequence my $d = 'AAAAAAAAAGAATTCTTTTTTTTTTTTTTGAATTCGGGGGGGGGGGGGGGGGGGG'; my $seq1 = Bio::Seq->new(-id=>'groundhog day',-seq=>$d); # cut it with an enzyme my $ra=Bio::Restriction::Analysis->new(-seq=>$seq1); @cuts = $ra->fragments('EcoRI'), 3; # analyse the fragments in a gel my $gel = Bio::Tools::Gel->new(-seq=>@cuts,-dilate=>10); my %bands = $gel->bands; foreach my $band (sort {$b <=> $a} keys %bands){ print $band," ", sprintf("%.1f", $bands{$band})," "; } #prints: #20 27.0 #25 26.0 #10 30.0 DESCRIPTION
This takes a set of sequences or Bio::Seq objects, and calculates their respective migration distances using: distance = dilation * (4 - log10(length(dna)); Source: Molecular Cloning, a Laboratory Manual. Sambrook, Fritsch, Maniatis. CSHL Press, 1989. Bio::Tools::Gel currently calculates migration distances based solely on the length of the nucleotide sequence. Secondary or tertiary structure, curvature, and other biophysical attributes of a sequence are currently not considered. Polypeptide migration is currently not supported. FEEDBACK
Mailing Lists User feedback is an integral part of the evolution of this and other Bioperl modules. Send your comments and suggestions preferably to the Bioperl mailing list. Your participation is much appreciated. bioperl-l@bioperl.org - General discussion http://bioperl.org/wiki/Mailing_lists - About the mailing lists Support Please direct usage questions or support issues to the mailing list: bioperl-l@bioperl.org rather than to the module maintainer directly. Many experienced and reponsive experts will be able look at the problem and quickly address it. Please include a thorough description of the problem with code and data examples if at all possible. Reporting Bugs Report bugs to the Bioperl bug tracking system to help us keep track of the bugs and their resolution. Bug reports can be submitted via the web: https://redmine.open-bio.org/projects/bioperl/ AUTHOR - Allen Day Email allenday@ucla.edu APPENDIX
The rest of the documentation details each of the object methods. Internal methods are usually preceded with a _ new Title : new Usage : my $gel = Bio::Tools::Gel->new(-seq => $sequence,-dilate => 3); Function: Initializes a new Gel Returns : Bio::Tools::Gel Args : -seq => Bio::Seq(s), scalar(s) or list of either/both (default: none) -dilate => Expand band migration distances (default: 1) add_band Title : add_band Usage : $gel->add_band($seq); Function: Calls _add_band with a (possibly created) Bio::Seq object. Returns : Args : Bio::Seq, scalar sequence, or list of either/both. _add_band Title : _add_band Usage : $gel->_add_band($seq); Function: Adds a new band to the gel. Returns : Args : Bio::Seq object dilate Title : dilate Usage : $gel->dilate(1); Function: Sets/retrieves the dilation factor. Returns : dilation factor Args : Float or none bands Title : bands Usage : $gel->bands; Function: Calculates migration distances of sequences. Returns : hash of (seq_id => distance) Args : log10 Title : log10 Usage : log10($n); Function: returns base 10 log of $n. Returns : float Args : float perl v5.14.2 2012-03-02 Bio::Tools::Gel(3pm)
All times are GMT -4. The time now is 04:26 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy